mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-06 08:34:28 +01:00
Fixed files that were using incorrect imports
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
2953ffac13
commit
ab2a3e9ee8
2 changed files with 2 additions and 2 deletions
|
|
@ -16,7 +16,7 @@ function createTagListSelector() {
|
||||||
(selectedFilterBuilderProp.type === filterBuilderTypes.NUMBER ||
|
(selectedFilterBuilderProp.type === filterBuilderTypes.NUMBER ||
|
||||||
selectedFilterBuilderProp.type === filterBuilderTypes.STRING) &&
|
selectedFilterBuilderProp.type === filterBuilderTypes.STRING) &&
|
||||||
filterType !== filterTypes.EQUAL &&
|
filterType !== filterTypes.EQUAL &&
|
||||||
filterType !== filterBuilderTypes.NOT_EQUAL ||
|
filterType !== filterTypes.NOT_EQUAL ||
|
||||||
!selectedFilterBuilderProp.optionsSelector
|
!selectedFilterBuilderProp.optionsSelector
|
||||||
) {
|
) {
|
||||||
return [];
|
return [];
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ function getStatusIconProps(status, message) {
|
||||||
case 'failed':
|
case 'failed':
|
||||||
return {
|
return {
|
||||||
name: icons.FATAL,
|
name: icons.FATAL,
|
||||||
kind: kinds.ERROR,
|
kind: kinds.DANGER,
|
||||||
title: `${title}: ${message}`
|
title: `${title}: ${message}`
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue