feat: default to languages tag in the skill picker

This commit is contained in:
Adrien Marquès 2022-10-25 12:21:41 +02:00
parent d7dcff6523
commit 5021b1ea3b
Signed by: xdrm-brackets
GPG Key ID: D75243CA236D825E
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ export default class SkillPicker extends Vue {
// available categories (tags) // available categories (tags)
private tags: tTag[] = [DEFAULT_TAG, ...skills.tags()]; private tags: tTag[] = [DEFAULT_TAG, ...skills.tags()];
// currently selected tag // currently selected tag
private tag: tTag = DEFAULT_TAG; private tag: tTag = tTag.Language;
// details section when a skill is selected // details section when a skill is selected
protected details: Details|null = null; protected details: Details|null = null;