fix(instance components): resolve instance componants when changing minecraft version

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers
2024-06-20 19:46:14 -07:00
parent 44bf0315ad
commit a791e22853
5 changed files with 103 additions and 1 deletions

View File

@ -402,3 +402,8 @@ void Component::updateCachedData()
emit dataChanged();
}
}
QDebug operator<<(QDebug d, const Component& comp) {
d << "Component(" << comp.m_uid << " : " << comp.m_cachedVersion << ")";
return d;
}