Skip to content

Commit 4914bfe

Browse files
committed
add titles to buttons
1 parent 8004f7a commit 4914bfe

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/plugins/drivelistmanager.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ export function DriveInputComponent({
4040
placeholder="Enter drive name"
4141
value={value}
4242
/>
43-
<Button className="input-add-drive-button" onClick={onSubmit}>
43+
<Button
44+
className="input-add-drive-button"
45+
onClick={onSubmit}
46+
title="Add public drive"
47+
>
4448
add
4549
</Button>
4650
</div>
@@ -86,6 +90,7 @@ export function DriveSearchListComponent(props: ISearchListProps) {
8690
await includeDrive(drive.name!);
8791
await props.model.refresh();
8892
}}
93+
title="Add drive"
8994
>
9095
<addIcon.react
9196
tag="span"
@@ -124,6 +129,7 @@ export function DriveDataGridComponent(props: IDriveDataGridProps) {
124129
await excludeDrive(drive.name!);
125130
await props.model.refresh();
126131
}}
132+
title="Remove drive"
127133
>
128134
<removeIcon.react
129135
tag="span"

0 commit comments

Comments
 (0)