Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX: Debug code removed #1811

Merged
merged 1 commit into from Aug 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 2 additions & 18 deletions frontend-html/src/gui/connections/NotificationContainer.tsx
Expand Up @@ -58,25 +58,9 @@ export class NotificationContainer extends React.Component<{}> {
{formScreen.notifications.map(x =>
<div className={S.row}>
<div className={S.iconContainer}>
{this.getIcon("info")}
{this.getIcon(x.icon)}
</div>
<div>{"Make it simple: You can apply your style to all the div and re-initialize the last one with :last-child: Make it simple: You can apply your style to all the div and re-initialize the last one with :last-child:"}</div>
</div>
)}
{formScreen.notifications.map(x =>
<div className={S.row}>
<div className={S.iconContainer}>
{this.getIcon("warning")}
</div>
<div>{"Make it simple: You can apply your style to all the div and re-initialize the last one with :last-child: Make it simple: You can apply your style to all the div and re-initialize the last one with :last-child:"}</div>
</div>
)}
{formScreen.notifications.map(x =>
<div className={S.row}>
<div className={S.iconContainer}>
{this.getIcon("error")}
</div>
<div>{"Make it simple: You can apply your style to all the div and re-initialize the last one with :last-child: Make it simple: You can apply your style to all the div and re-initialize the last one with :last-child:"}</div>
<div>{x.text}</div>
</div>
)}
</div>
Expand Down