WIP: Draft: feat: added editor warning system and more user feedback #45

Closed
j.gerla wants to merge 43 commits from feat/editor-user-feedback into dev
Showing only changes of commit 363054afda - Show all commits

View File

@@ -119,10 +119,11 @@ function WarningListItem(props: { warning: EditorWarning }) {
</div>
<div className={styles.meta}>
{props.warning.scope.id}
{props.warning.scope.handleId && (
<span className={styles.handle}>@{props.warning.scope.handleId}</span>
)}
{props.warning.type}
{/*{props.warning.scope.id}*/}
{/*{props.warning.scope.handleId && (*/}
{/* <span className={styles.handle}>@{props.warning.scope.handleId}</span>*/}
{/*)}*/}
</div>
</div>
);