axnode: fix invalid enum

This commit is contained in:
Pierre Tachoire
2026-01-15 15:40:52 +01:00
parent bd3966bf8d
commit d7d956d966

View File

@@ -624,7 +624,7 @@ pub const AXRole = enum(u8) {
.search => .searchbox,
.checkbox => .checkbox,
// zig fmt: off
.password, .datetime_local, .hidden, .month, .color,
.password, .@"datetime-local", .hidden, .month, .color,
.week, .time, .file, .date => .none,
// zig fmt: ofn
};