/home/luna/cockpit-files/src/dialogs/delete.tsx:107:4 lint/style/noImplicitBoolean FIXABLE ━━━━━━━━━━
× Use explicit boolean values for boolean JSX props.
105 │ titleIconVariant="warning"
106 │ variant={ModalVariant.medium}
> 107 │ isOpen
│ ^^^^^^
108 │ onClose={() => dialogResult.resolve()}
109 │ footer={
i Safe fix: Add explicit `true` literal for this attribute
107 │ → → → isOpen={true}
│ +++++++
/home/luna/cockpit-files/src/dialogs/delete.tsx:121:59 lint/style/noImplicitBoolean FIXABLE ━━━━━━━━━━
× Use explicit boolean values for boolean JSX props.
119 │ >
120 │ {errorMessage && (
> 121 │
│ ^^^^^^^^
122 │ )}
123 │
i Safe fix: Add explicit `true` literal for this attribute
121 │ → → → →
│ +++++++
/home/luna/cockpit-files/src/dialogs/mkdir.tsx:107:4 lint/style/noImplicitBoolean FIXABLE ━━━━━━━━━━
× Use explicit boolean values for boolean JSX props.
105 │ position="top"
106 │ title={_("Create directory")}
> 107 │ isOpen
│ ^^^^^^
108 │ onClose={() => dialogResult.resolve()}
109 │ variant={ModalVariant.small}
i Safe fix: Add explicit `true` literal for this attribute
107 │ → → → isOpen={true}
│ +++++++
/home/luna/cockpit-files/src/dialogs/mkdir.tsx:132:60 lint/style/noImplicitBoolean FIXABLE ━━━━━━━━━━
× Use explicit boolean values for boolean JSX props.
130 │
131 │ {errorMessage !== undefined && (
> 132 │
│ ^^^^^^^^
133 │ )}
134 │
│ +++++++
/home/luna/cockpit-files/src/dialogs/mkdir.tsx:135:6 lint/style/noImplicitBoolean FIXABLE ━━━━━━━━━━
× Use explicit boolean values for boolean JSX props.
133 │ )}
134 │