Skip to content

Commit

Permalink
Merge pull request #3359 from neos/bugfix/replace-class-attribute
Browse files Browse the repository at this point in the history
BUGFIX: Prevent error on wrong class attribute
  • Loading branch information
markusguenther authored Feb 13, 2023
2 parents 8c88240 + 5f9052e commit e611046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/neos-ui/src/Containers/Modals/DeleteNode/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default class DeleteNodeModal extends PureComponent {
const nodeType = $get('nodeType', node);
const nodeTypeLabel = $get('ui.label', nodeTypesRegistry.get(nodeType)) || 'Neos.Neos:Main:node';
return (
<div class={style.modalTitleContainer}>
<div className={style.modalTitleContainer}>
<Icon icon="exclamation-triangle"/>
<span className={style.modalTitle}>
<I18n id="Neos.Neos:Main:delete" fallback="Delete"/>
Expand Down

0 comments on commit e611046

Please sign in to comment.