Skip to content

Commit 2a5b8ac

Browse files
fix: BROS-331: Chat follow-ups (#8186)
Co-authored-by: robot-ci-heartex <[email protected]> Co-authored-by: hlomzik <[email protected]>
1 parent aaf34a2 commit 2a5b8ac

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

web/libs/editor/src/components/SidePanels/DetailsPanel/DetailsPanel.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
}
4747

4848
.region-actions {
49-
padding: 8px;
50-
height: 52px;
49+
padding: var(--spacing-tighter) var(--spacing-tight);
50+
background: var(--color-neutral-background);
5151
display: flex;
5252
align-items: stretch;
5353
justify-content: space-between;

web/libs/editor/src/components/SidePanels/DetailsPanel/RegionLabels.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const RegionLabels: FC<{ region: LSFRegion }> = observer(({ region }) =>
77
const labelsInResults = region.labelings.map((result: any) => result.selectedLabels || []);
88
const labels: any[] = [].concat(...labelsInResults);
99

10-
if (!labels.length) return <Block name="labels-list">No label</Block>;
10+
if (!labels.length) return <Block name="labels-list">{region.noLabelView || "No label"}</Block>;
1111

1212
return (
1313
<Block name="labels-list">
Lines changed: 3 additions & 0 deletions
Loading

web/libs/ui/src/assets/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ export { ReactComponent as IconBubbleSpikeAlt } from "./bubble-spike-alt.svg";
3636
export { ReactComponent as IconBulb } from "./bulb.svg";
3737
export { ReactComponent as IconBulkLabeling } from "./bulk-labeling.svg";
3838
export { ReactComponent as IconCalendar } from "./calendar.svg";
39+
export { ReactComponent as IconChat } from "./chat.svg";
3940
export { ReactComponent as IconCheck } from "./check.svg";
4041
export { ReactComponent as IconCheck2 } from "./check2.svg";
4142
export { ReactComponent as IconCheck3 } from "./check3.svg";

0 commit comments

Comments
 (0)