Skip to content

Commit c6ca5a2

Browse files
committed
feat: add id at widget title
1 parent 181dbe3 commit c6ca5a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/IFrameWidget/editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class IFrameWidgetEditor extends Component<Props, IFrameWidgetProps> {
5454
return (
5555
<div>
5656
<>
57-
<Typography variant="h6">
57+
<Typography variant="h6" id={this.props.id}>
5858
IFrameWidget : {this.props.id}
5959
</Typography>
6060
<FormGroup>

src/components/TextWidget/editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class TextWidgetEditor extends Component<Props, TextWidgetProps> {
113113
return (
114114
<div>
115115
<>
116-
<Typography variant="h6">
116+
<Typography variant="h6" id={this.props.id}>
117117
TextWidget : {this.props.id}
118118
</Typography>
119119
<FormGroup>

src/components/TimeWidget/editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class TimeWidgetEditor extends Component<Props, TimeWidgetProps> {
5858
return (
5959
<div>
6060
<>
61-
<Typography variant="h6">
61+
<Typography variant="h6" id={this.props.id}>
6262
TimeWidget : {this.props.id}
6363
</Typography>
6464
<FormGroup>

0 commit comments

Comments
 (0)