{#if otherSearch === ''}
{#each application.flairs as flair}
{@const hasDesc = flair.description && flair.showFullDescription === 1}
{#if hasDesc}
{flair.name}
:
{flair.description}
{:else}
{flair.name}
{/if}
{/each}
{:else}
{@const filtered_list = flairs.filter((a) =>
a.name.match(new RegExp(otherSearch, 'i'))
)}
{#if filtered_list.length == 0}
Could not find the skill you are looking for.
{:else}
{#each filtered_list as flair}
{#if flair.description}
{flair.name}
:
{flair.description}
{:else}
{flair.name}
{/if}
{/each}
{/if}
{/if}