1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-02-15 07:25:54 +00:00

Update the Select Option type from any to string per documentation (#28954)

This commit is contained in:
Pegasus
2026-01-13 04:44:02 -05:00
committed by GitHub
parent 66e6cb8dbc
commit 1975265e6b

View File

@@ -377,7 +377,7 @@ interface SelectBoxOptionImage {
}
export interface SelectOption {
value: any;
value: string;
label: string;
description?: string;
image?: string | SelectBoxOptionImage;