mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-25 17:04:54 +00:00
fix the console error of domain and owner in classification page (#22419)
This commit is contained in:
parent
69bead8ee9
commit
53356f213d
@ -92,7 +92,7 @@ const ClassificationDetails = forwardRef(
|
||||
const { fqn: tagCategoryName } = useFqn();
|
||||
const navigate = useNavigate();
|
||||
const [tags, setTags] = useState<Tag[]>([]);
|
||||
const [isTagsLoading, setIsTagsLoading] = useState(false);
|
||||
const [isTagsLoading, setIsTagsLoading] = useState(true);
|
||||
const {
|
||||
currentPage,
|
||||
paging,
|
||||
|
@ -82,7 +82,7 @@ const TagsPage = () => {
|
||||
const [isAddingTag, setIsAddingTag] = useState<boolean>(false);
|
||||
const [editTag, setEditTag] = useState<Tag>();
|
||||
const [error, setError] = useState<string>('');
|
||||
const [isLoading, setIsLoading] = useState<boolean>(false);
|
||||
const [isLoading, setIsLoading] = useState<boolean>(true);
|
||||
const classificationDetailsRef = useRef<ClassificationDetailsRef>(null);
|
||||
|
||||
const [deleteTags, setDeleteTags] = useState<DeleteTagsType>({
|
||||
|
Loading…
x
Reference in New Issue
Block a user