From 619aa4bbaa752601d7e7701021480f66bfa347d5 Mon Sep 17 00:00:00 2001 From: Philipp Kief Date: Mon, 28 Aug 2023 16:48:18 +0200 Subject: [PATCH] Add missing language ids for yaml icon (#2066) * Associate github-actions-workflow language id with yaml icon * Add spring boot properties yaml language id * Add jinja yaml language id --- src/icons/languageIcons.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/icons/languageIcons.ts b/src/icons/languageIcons.ts index cc1ab1a3a..1cbbc147c 100644 --- a/src/icons/languageIcons.ts +++ b/src/icons/languageIcons.ts @@ -5,12 +5,20 @@ import { LanguageIcon } from '../models'; */ export const languageIcons: LanguageIcon[] = [ { icon: { name: 'git' }, ids: ['git', 'git-commit', 'git-rebase', 'ignore'] }, - { icon: { name: 'yaml' }, ids: ['yaml'] }, + { + icon: { name: 'yaml' }, + ids: [ + 'yaml', + 'github-actions-workflow', + 'spring-boot-properties-yaml', + 'jinja-yaml', + ], + }, { icon: { name: 'xml' }, ids: ['xml', 'xquery', 'xsl'] }, { icon: { name: 'matlab' }, ids: ['matlab'] }, { icon: { name: 'settings' }, - ids: ['makefile', 'toml', 'ini', 'properties'], + ids: ['makefile', 'toml', 'ini', 'properties', 'spring-boot-properties'], }, { icon: { name: 'shaderlab' }, ids: ['shaderlab'] }, { icon: { name: 'diff' }, ids: ['diff'] },