mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-20 07:19:20 +01:00
fix(task): commit snippet layout
This commit is contained in:
parent
be3bad2e11
commit
2bd950eb4c
@ -586,7 +586,7 @@
|
||||
<style lang="scss">
|
||||
|
||||
.v-alert__wrapper {
|
||||
overflow: auto;
|
||||
//overflow: auto;
|
||||
}
|
||||
|
||||
.v-dialog > .v-card > .v-card__title {
|
||||
|
@ -15,16 +15,20 @@
|
||||
<v-alert
|
||||
color="blue"
|
||||
dark
|
||||
icon="mdi-source-fork"
|
||||
dismissible
|
||||
dense
|
||||
v-model="hasCommit"
|
||||
prominent
|
||||
class="overflow-hidden mt-2"
|
||||
>
|
||||
<div
|
||||
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 v-if="sourceTask && sourceTask.commit_message">{{ sourceTask.commit_message }}</div>
|
||||
</v-alert>
|
||||
|
||||
<v-select
|
||||
|
Loading…
Reference in New Issue
Block a user