-
Notifications
You must be signed in to change notification settings - Fork 4
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
BAH-4052 | Fix. Slot Details Cell View #228
Conversation
<div | ||
className="slot-details" | ||
key={`${taskItem.uuid}`} | ||
style={{ borderColor: "#0f62fe", background: "#e1f3fe" }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are we adding inline styles though we have added class ? Can we keep it consistent by defining a class ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure Mohan, makes sense. Will do.
<div | ||
className="slot-details" | ||
key={`${slotItem.uuid}`} | ||
style={{ borderColor: "#92c4c3", background: "#edf8e6" }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here, using class and as well as inline styling
* [Rahul] | BAH-4052 | Fix. Remove Daemon User Tag from Tasks * [Rahul] | BAH-4052 | Add. Border CSS To Slot Details Cell * [Rahul] | BAH-4052 | Add. Task Provider Font Styling * [Rahul] | BAH-4052 | Refactor. Extend Task Cell Styling * [Rahul] | BAH-4052 | Add. Creator Styling In Slot Details Cell
JIRA -> BAH-4052
This PR aims to hide the user name for tasks created by the
daemon
user while preserving it for tasks created by non-system users. This PR also includes changes to the overall look ofSlot Details Cell
while preserving the overall structure and functionality.