This commit is contained in:
2025-05-04 22:22:20 +03:00
parent cda54b1e95
commit ebd77a3e66
54 changed files with 1194 additions and 2580 deletions

View File

@@ -13,7 +13,7 @@
tgUser?.first_name +
(tgUser?.first_name && tgUser?.last_name ? ' ' : '') +
tgUser?.last_name +
!(tgUser?.first_name || tgUser?.last_name) ? tgUser?.username : ''
(!(tgUser?.first_name || tgUser?.last_name) ? tgUser?.username : '')
}}
</span>
</div>

View File

@@ -12,23 +12,27 @@
no-error-icon
dense
filled
label-slot
class = "w100 fix-bottom-padding"
:label="$t('project_card__project_name')"
:rules="[rules.name]"
/>
>
<template #label>
{{ $t('project_card__project_name') }} <span class="text-red">*</span>
</template>
</q-input>
<q-input
v-model="modelValue.description"
dense
filled
autogrow
class="w100"
class="w100 q-pt-sm"
:label="$t('project_card__project_description')"
/>
<q-checkbox
v-if="modelValue.logo"
v-model="modelValue.logo_as_bg"
v-model="modelValue.is_logo_bg"
class="w100"
dense
>
@@ -41,7 +45,7 @@
<script setup lang="ts">
import { watch, computed } from 'vue'
import type { ProjectParams } from 'src/types'
import type { ProjectParams } from 'types/Project'
import { useI18n } from 'vue-i18n'
const { t }= useI18n()
@@ -68,7 +72,7 @@
</script>
<style>
.q-field--with-bottom.fix-bottom-padding {
padding-bottom: 0 !important
}
.q-field--with-bottom.fix-bottom-padding {
padding-bottom: 0 !important
}
</style>