Skip to content

Commit

Permalink
Ignore for now
Browse files Browse the repository at this point in the history
  • Loading branch information
lucapette committed Nov 10, 2022
1 parent e3eb7d4 commit 2e027e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/containers/Topic/Topic/TopicData/TopicData.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ class TopicData extends Root {
_handleOnShare(row) {
const { selectedCluster, selectedTopic } = this.state;

const pathToShare = `${basePath}/ui/${selectedCluster}/topic/${selectedTopic}/data?single=true&partition=${row.partition}&offset=${row.offset}`;
const pathToShare = `${basePath}/ui/${selectedCluster}/topic/${selectedTopic}/data?single=true&partition=${row.partition}&offset=${row.offset}`; // eslint-disable-line max-len

try {
this._copyToClipboard(`${window.location.host}${pathToShare}`);
Expand Down

0 comments on commit 2e027e7

Please sign in to comment.