diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/json-viewer/json.models.ts | 2 | ||||
-rw-r--r-- | src/ui/c-input-text/c-input-text.vue | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/tools/json-viewer/json.models.ts b/src/tools/json-viewer/json.models.ts index 8d128ca..9bed365 100644 --- a/src/tools/json-viewer/json.models.ts +++ b/src/tools/json-viewer/json.models.ts @@ -13,7 +13,7 @@ function sortObjectKeys<T>(obj: T): T { } return Object.keys(obj) - .sort() + .sort((a, b) => a.localeCompare(b)) .reduce((sortedObj, key) => { sortedObj[key] = sortObjectKeys((obj as Record<string, unknown>)[key]); return sortedObj; diff --git a/src/ui/c-input-text/c-input-text.vue b/src/ui/c-input-text/c-input-text.vue index 99afd27..513834d 100644 --- a/src/ui/c-input-text/c-input-text.vue +++ b/src/ui/c-input-text/c-input-text.vue @@ -199,7 +199,6 @@ const htmlInputType = computed(() => { } & > .label { - flex-shrink: 0; margin-bottom: 5px; flex: 0 0 v-bind('labelWidth'); text-align: v-bind('labelAlign'); @@ -254,7 +253,6 @@ const htmlInputType = computed(() => { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; - background-color: transparent; border: none; color: v-bind('appTheme.text.baseColor'); |