-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17844 from ElectronicBlueberry/help-forum-short-id
[24.0] Fix Help Forum Integration uses Long ID
- Loading branch information
Showing
4 changed files
with
21 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* Converts a long tool ID to a short tool id. | ||
* If the passed in ID is short already, returns it. | ||
* @param longId long tool-id | ||
* @returns short tool-id | ||
*/ | ||
export function getShortToolId(longId: string): string { | ||
const toolIdSlash = longId.split("/"); | ||
const shortId = toolIdSlash[toolIdSlash.length - 2]; | ||
|
||
return shortId ?? longId; | ||
} |