fix: 'Schließen'-Button entfernt, zurück zum ursprünglichen X-Icon

This commit is contained in:
ISA
2025-05-07 10:23:49 +02:00
parent 6a24c18cc9
commit cf9596595e
5 changed files with 4 additions and 21 deletions

View File

@@ -114,14 +114,6 @@ export default function Knotenpunkte({ slot, onClose }: Props) {
)} )}
</div> </div>
))} ))}
<div className="flex justify-end pt-4">
<button
onClick={onClose}
className="bg-littwin-blue text-white px-4 py-2 rounded "
>
Schließen
</button>
</div>
</div> </div>
); );
} }

View File

@@ -224,12 +224,6 @@ export default function KueEinstellung({
</div> </div>
</div> </div>
<div className="flex justify-end gap-2 p-3 rounded"> <div className="flex justify-end gap-2 p-3 rounded">
<button
onClick={onClose}
className="bg-littwin-blue text-white px-4 py-2 rounded flex items-center"
>
Schließen
</button>
{isAdminLoggedIn && ( {isAdminLoggedIn && (
<button <button
onClick={() => firmwareUpdate(slot)} onClick={() => firmwareUpdate(slot)}

View File

@@ -61,6 +61,9 @@ export default function KueModal({ showModal, onClose, slot }: KueModalProps) {
<h2 className="text-base font-bold"> <h2 className="text-base font-bold">
Einstellungen Steckplatz {slot + 1} Einstellungen Steckplatz {slot + 1}
</h2> </h2>
<button onClick={onClose} className="text-2xl hover:text-gray-200">
<i className="bi bi-x-circle-fill"></i>
</button>
</div> </div>
<div className="flex justify-start bg-gray-100 space-x-2 p-2"> <div className="flex justify-start bg-gray-100 space-x-2 p-2">

View File

@@ -240,12 +240,6 @@ export default function TdrEinstellung({ slot, onClose }: Props) {
</div> </div>
<div className="mt-36"> <div className="mt-36">
<div className="flex justify-end gap-2 p-3 rounded "> <div className="flex justify-end gap-2 p-3 rounded ">
<button
onClick={onClose}
className="bg-littwin-blue text-white px-4 py-2 rounded flex items-center"
>
Schließen
</button>
<button <button
onClick={handleSave} onClick={handleSave}
className="bg-littwin-blue text-white px-4 py-2 rounded flex items-center" className="bg-littwin-blue text-white px-4 py-2 rounded flex items-center"

View File

@@ -6,5 +6,5 @@
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen). 2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
*/ */
const webVersion = "1.6.381"; const webVersion = "1.6.382";
export default webVersion; export default webVersion;