fix(task): commit snippet layout

This commit is contained in:
Denis Gukov 2024-12-14 16:05:05 +05:00
parent be3bad2e11
commit 2bd950eb4c
2 changed files with 9 additions and 5 deletions

View File

@ -586,7 +586,7 @@
<style lang="scss"> <style lang="scss">
.v-alert__wrapper { .v-alert__wrapper {
overflow: auto; //overflow: auto;
} }
.v-dialog > .v-card > .v-card__title { .v-dialog > .v-card > .v-card__title {

View File

@ -15,16 +15,20 @@
<v-alert <v-alert
color="blue" color="blue"
dark dark
icon="mdi-source-fork"
dismissible dismissible
dense
v-model="hasCommit" v-model="hasCommit"
prominent class="overflow-hidden mt-2"
> >
<div <div
style="font-weight: bold;" style="font-weight: bold;"
>{{ (item.commit_hash || '').substr(0, 10) }} >
<v-icon small>mdi-source-fork</v-icon>
{{ (item.commit_hash || '').substr(0, 10) }}
</div>
<div v-if="sourceTask && sourceTask.commit_message">
{{ sourceTask.commit_message.substring(0, 50) }}
</div> </div>
<div v-if="sourceTask && sourceTask.commit_message">{{ sourceTask.commit_message }}</div>
</v-alert> </v-alert>
<v-select <v-select