Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(web) - a few VERY minor UI fixes #4053

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading