Skip to content

Commit

Permalink
fix(ui): import getTemplateNameFromNode
Browse files Browse the repository at this point in the history
Fixes #13415 (#13415)

- 27a283a ended up getting cherry-picked/backported before b1c51df, causing the import to disappear and crashing the UI when `getTemplateNameFromNode` was attempted to be used
  - one removed the import and the other added it; the removal ended up being an "invisible" merge conflict
  - and the `release-3.5` build apparently doesn't type-check, so it didn't get caught in CI. see the issue for more details on that.

Signed-off-by: Anton Gilgur <[email protected]>
  • Loading branch information
Anton Gilgur committed Aug 1, 2024
1 parent 77dcfdc commit 72d0d22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {InfoIcon, WarningIcon} from '../../../shared/components/fa-icons';
import {Links} from '../../../shared/components/links';
import {Context} from '../../../shared/context';
import {useLocalStorage} from '../../../shared/hooks/uselocalstorage';
import {getPodName} from '../../../shared/pod-name';
import {getPodName, getTemplateNameFromNode} from '../../../shared/pod-name';
import {ScopedLocalStorage} from '../../../shared/scoped-local-storage';
import {services} from '../../../shared/services';
import {FullHeightLogsViewer} from './full-height-logs-viewer';
Expand Down

0 comments on commit 72d0d22

Please sign in to comment.