mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-09-14 17:52:10 +02:00
Fix model selection type in Frigate+ settings pane (#19952)
* model type does not need to match config model type As long as a model is supported by a detector, it should be available in the list * fix missing semicolon the web linter was complaining
This commit is contained in:
parent
0eb441fe50
commit
751de141d5
@ -139,7 +139,7 @@ export default function HlsVideoPlayer({
|
|||||||
if (hlsRef.current) {
|
if (hlsRef.current) {
|
||||||
hlsRef.current.destroy();
|
hlsRef.current.destroy();
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
}, [videoRef, hlsRef, useHlsCompat, currentSource]);
|
}, [videoRef, hlsRef, useHlsCompat, currentSource]);
|
||||||
|
|
||||||
// state handling
|
// state handling
|
||||||
|
@ -390,7 +390,6 @@ export default function FrigatePlusSettingsView({
|
|||||||
className="cursor-pointer"
|
className="cursor-pointer"
|
||||||
value={id}
|
value={id}
|
||||||
disabled={
|
disabled={
|
||||||
model.type != config.model.model_type ||
|
|
||||||
!model.supportedDetectors.includes(
|
!model.supportedDetectors.includes(
|
||||||
Object.values(config.detectors)[0]
|
Object.values(config.detectors)[0]
|
||||||
.type,
|
.type,
|
||||||
|
Loading…
Reference in New Issue
Block a user