[Fix][UI Next][V1.0.0-Alpha] Fixed an issue with long workflow names (#9217)
parent
aea0025035
commit
91319e3111
|
|
@ -224,7 +224,9 @@ export default defineComponent({
|
||||||
label={t('project.workflow.workflow_name')}
|
label={t('project.workflow.workflow_name')}
|
||||||
path='workflow_name'
|
path='workflow_name'
|
||||||
>
|
>
|
||||||
{this.row.name}
|
<div class={styles.formItem} title={this.row.name}>
|
||||||
|
{this.row.name}
|
||||||
|
</div>
|
||||||
</NFormItem>
|
</NFormItem>
|
||||||
<NFormItem
|
<NFormItem
|
||||||
label={t('project.workflow.failure_strategy')}
|
label={t('project.workflow.failure_strategy')}
|
||||||
|
|
|
||||||
|
|
@ -95,3 +95,10 @@
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.formItem {
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue