Skip to content

Commit

Permalink
fix: 【监控】告警中心通知状态及告警策略tooltips展示换行 --Bug=131366955
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 19383
  • Loading branch information
goodGai committed Sep 25, 2024
1 parent 11aeac3 commit 1770205
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default class NoticeStatusTable extends tsc<IProps> {
allowHtml: false,
html: false,
allowHTML: false,
with: 200,
width: 200,
content: row[item.prop]?.tip,
placements: ['top'],
disabled: !row[item.prop]?.tip,
Expand All @@ -93,7 +93,7 @@ export default class NoticeStatusTable extends tsc<IProps> {
allowHtml: false,
html: false,
allowHTML: false,
with: 200,
width: 200,
content: row[item.prop]?.tip,
placements: ['top'],
disabled: !row[item.prop]?.tip,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -753,3 +753,7 @@
}
}
}

.ext-cls {
max-width: 200px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -2201,6 +2201,7 @@ class StrategyConfig extends Mixins(UserConfigMixin, authorityMixinCreate(strate
content: () => props.row.labels.join('、 '),
delay: 200,
allowHTML: false,
extCls: 'ext-cls',
}}
>
+{props.row.overflowLabelCount}
Expand Down Expand Up @@ -2245,6 +2246,7 @@ class StrategyConfig extends Mixins(UserConfigMixin, authorityMixinCreate(strate
delay: 200,
allowHTML: false,
disabled: !props.row.overflow,
extCls: 'ext-cls',
}}
>
+{props.row.overflowCount}
Expand Down

0 comments on commit 1770205

Please sign in to comment.