fix the console error of domain and owner in classification page (#22419)

This commit is contained in:
Ashish Gupta 2025-07-17 18:40:20 +05:30 committed by GitHub
parent 69bead8ee9
commit 53356f213d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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>({