mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
fix(overriderules): correct disabled condition for override rule creation (#1419)
* fix(overriderules): correct disabled condition for override rule creation * fix: remove useless console.log
This commit is contained in:
@@ -528,7 +528,7 @@ const SettingsServices = () => {
|
||||
<div className="flex h-full w-full items-center justify-center">
|
||||
<Button
|
||||
buttonType="ghost"
|
||||
disabled={!radarrData?.length || !sonarrData?.length}
|
||||
disabled={!radarrData?.length && !sonarrData?.length}
|
||||
onClick={() =>
|
||||
setOverrideRuleModal({
|
||||
open: true,
|
||||
|
||||
Reference in New Issue
Block a user