[fix] add cloud tooltip (#1728)
Fix cloud tool tooltip ### Change Type - [x] `patch` — Bug fix - [ ] `minor` — New feature - [ ] `major` — Breaking change - [ ] `dependencies` — Changes to package dependencies[^1] - [ ] `documentation` — Changes to the documentation only[^2] - [ ] `tests` — Changes to any test code only[^2] - [ ] `internal` — Any other changes that don't affect the published package[^2] - [ ] I don't know [^1]: publishes a `patch` release, for devDependencies use `internal` [^2]: will not publish a new version ### Test Plan 1. Add a step-by-step description of how to test your PR here. 2. - [ ] Unit Tests - [ ] End to end tests ### Release Notes - Add a brief release note for your PR here.
This commit is contained in:
parent
30b0a4d736
commit
b7884c6d67
4 changed files with 4 additions and 1 deletions
|
@ -180,6 +180,7 @@
|
|||
"tool.arrow-right": "Arrow right",
|
||||
"tool.arrow-up": "Arrow up",
|
||||
"tool.arrow": "Arrow",
|
||||
"tool.cloud": "Cloud",
|
||||
"tool.diamond": "Diamond",
|
||||
"tool.ellipse": "Ellipse",
|
||||
"tool.hexagon": "Hexagon",
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -184,6 +184,7 @@ export type TLUiTranslationKey =
|
|||
| 'tool.arrow-right'
|
||||
| 'tool.arrow-up'
|
||||
| 'tool.arrow'
|
||||
| 'tool.cloud'
|
||||
| 'tool.diamond'
|
||||
| 'tool.ellipse'
|
||||
| 'tool.hexagon'
|
||||
|
|
|
@ -184,6 +184,7 @@ export const DEFAULT_TRANSLATION = {
|
|||
'tool.arrow-right': 'Arrow right',
|
||||
'tool.arrow-up': 'Arrow up',
|
||||
'tool.arrow': 'Arrow',
|
||||
'tool.cloud': 'Cloud',
|
||||
'tool.diamond': 'Diamond',
|
||||
'tool.ellipse': 'Ellipse',
|
||||
'tool.hexagon': 'Hexagon',
|
||||
|
|
Loading…
Reference in a new issue