File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
editor/src/components/SidePanels/DetailsPanel Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 4646}
4747
4848.region-actions {
49- padding : 8 px ;
50- height : 52 px ;
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 ;
Original file line number Diff line number Diff 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" >
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ export { ReactComponent as IconBubbleSpikeAlt } from "./bubble-spike-alt.svg";
3636export { ReactComponent as IconBulb } from "./bulb.svg" ;
3737export { ReactComponent as IconBulkLabeling } from "./bulk-labeling.svg" ;
3838export { ReactComponent as IconCalendar } from "./calendar.svg" ;
39+ export { ReactComponent as IconChat } from "./chat.svg" ;
3940export { ReactComponent as IconCheck } from "./check.svg" ;
4041export { ReactComponent as IconCheck2 } from "./check2.svg" ;
4142export { ReactComponent as IconCheck3 } from "./check3.svg" ;
You can’t perform that action at this time.
0 commit comments