diff options
author | Ajay Ramachandran <[email protected]> | 2023-10-17 20:44:29 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2023-10-17 20:44:29 -0400 |
commit | 88cfa023c9248097042445228007558a101fc0f0 (patch) | |
tree | f76f954d83d0f1e65d964b47c4196c96bed6e4fb | |
parent | 0f0e404920fd971e51ceff0acea6acd5c9cc1d51 (diff) | |
parent | 41a2fc2cb35d3a676a04af4cce5aacb4cb8a24c7 (diff) | |
download | SponsorBlock-88cfa023c9248097042445228007558a101fc0f0.tar.gz SponsorBlock-88cfa023c9248097042445228007558a101fc0f0.zip |
Merge pull request #1880 from Choromanski/feature/remove-duplicate-id-sponsorTimePreviewButton
Renamed duplicate span id
-rw-r--r-- | src/components/SponsorTimeEditComponent.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/SponsorTimeEditComponent.tsx b/src/components/SponsorTimeEditComponent.tsx index 753be97a..22e10d42 100644 --- a/src/components/SponsorTimeEditComponent.tsx +++ b/src/components/SponsorTimeEditComponent.tsx @@ -297,7 +297,7 @@ class SponsorTimeEditComponent extends React.Component<SponsorTimeEditProps, Spo ): ""} {(!isNaN(segment[1]) && ![ActionType.Poi, ActionType.Full].includes(sponsorTime.actionType)) ? ( - <span id={"sponsorTimePreviewButton" + this.idSuffix} + <span id={"sponsorTimePreviewEndButton" + this.idSuffix} className="sponsorTimeEditButton" onClick={(e) => this.previewTime(e.ctrlKey, e.shiftKey, true)}> {chrome.i18n.getMessage("End")} |