Skip to content

Commit

Permalink
fix(web) - a few VERY minor UI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
wendybujalski committed Jun 27, 2024
1 parent 5de6c19 commit f28f7f9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/web/src/components/AssetDetailsPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ScrollArea v-else-if="editingAsset && props.assetId">
<template #top>
<div
class="flex flex-row items-center gap-xs p-xs border-b dark:border-neutral-600"
class="flex flex-row items-center justify-around gap-xs p-xs border-b dark:border-neutral-600"
>
<VButton
v-if="useFeatureFlagsStore().IMMUTABLE_SCHEMA_VARIANTS"
Expand Down
3 changes: 2 additions & 1 deletion app/web/src/components/AssetNameModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
v-model="assetName"
type="text"
label="Asset Name"
noLabel
required
@enterPressed="submit"
/>
<VButton class="mt-md" @click="submit">{{ props.buttonLabel }}</VButton>
<VButton class="mt-sm" @click="submit">{{ props.buttonLabel }}</VButton>
</Modal>
</template>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,9 @@
class="text-center pt-2xs italic text-2xs text-neutral-400"
:style="{ paddingLeft: indentPxPlusOne }"
>
+{{ numberOfHiddenChildren }} hidden empty props
+{{ numberOfHiddenChildren }} hidden empty prop{{
numberOfHiddenChildren > 1 ? "s" : ""
}}
</div>
</div>

Expand Down

0 comments on commit f28f7f9

Please sign in to comment.