From df8f6503194e08eb2ec2ef2982acd60f0f4ddda1 Mon Sep 17 00:00:00 2001 From: HarveyKandola Date: Wed, 18 Aug 2021 19:41:19 -0400 Subject: [PATCH] Support VB.NET for code syntax highlighting --- gui/app/components/section/wysiwyg/type-editor.js | 1 + gui/app/components/ui/ui-progress.js | 4 ++++ gui/app/components/ui/ui-tooltip.js | 4 ++++ 3 files changed, 9 insertions(+) create mode 100644 gui/app/components/ui/ui-progress.js create mode 100644 gui/app/components/ui/ui-tooltip.js diff --git a/gui/app/components/section/wysiwyg/type-editor.js b/gui/app/components/section/wysiwyg/type-editor.js index 12636a6b..61328c3a 100644 --- a/gui/app/components/section/wysiwyg/type-editor.js +++ b/gui/app/components/section/wysiwyg/type-editor.js @@ -106,6 +106,7 @@ export default Component.extend({ { text: 'SQL', value: 'sql' }, { text: 'Swift', value: 'swift' }, { text: 'TypeScript', value: 'typescript' }, + { text: 'VB.Net', value: 'vbnet' }, { text: 'XML', value: 'markup' }, { text: 'YAML', value: 'yaml' } ], diff --git a/gui/app/components/ui/ui-progress.js b/gui/app/components/ui/ui-progress.js new file mode 100644 index 00000000..bb93d73f --- /dev/null +++ b/gui/app/components/ui/ui-progress.js @@ -0,0 +1,4 @@ +import Component from '@ember/component'; + +export default Component.extend({ +}); diff --git a/gui/app/components/ui/ui-tooltip.js b/gui/app/components/ui/ui-tooltip.js new file mode 100644 index 00000000..bb93d73f --- /dev/null +++ b/gui/app/components/ui/ui-tooltip.js @@ -0,0 +1,4 @@ +import Component from '@ember/component'; + +export default Component.extend({ +});