hide object lifecycle if there is no clip

This commit is contained in:
Josh Hawkins 2024-10-30 06:39:24 -05:00
parent 49590272bb
commit 20ce153d4b

View File

@ -146,7 +146,7 @@ export default function SearchDetailDialog({
views.splice(index, 1);
}
if (search.data.type != "object") {
if (search.data.type != "object" || !search.has_clip) {
const index = views.indexOf("object lifecycle");
views.splice(index, 1);
}