-
Notifications
You must be signed in to change notification settings - Fork 29
Feature/mobile quick actions #604
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
base: main
Are you sure you want to change the base?
Conversation
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.
- Please use the
*Html
methods if possible - Clicking on check now or remove ack nothing happens
&:before { | ||
right: 1.125em; | ||
} |
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.
What's that for?
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.
It’s to position the flyout's caret correctly. I made that clear with a comment.
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.
- Clicking on check now or remove ack nothing happens
It’s been fixed in Icinga/icingaweb2/feature/redesigned-mobile-menu
Please use the *Html methods if possible
✅
public/css/widget/quick-actions.less
Outdated
background: @icinga-blue; | ||
.appearance(none); | ||
border: none; | ||
color: @body-bg-color; |
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.
Nope.
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.
✅
872e93c
to
244d4c1
Compare
refs Icinga/icingaweb2/#4649
refs Icinga/icingaweb2/#4649
refs Icinga/icingaweb2/#4649
244d4c1
to
cf44a98
Compare
…mns to be selected The `Sql::columns()` method doesn't override existing columns when calling this directly, because at this point the ipl/orm query has already collected all selectable columns, which are not required for this use case. A later call to the `columns()` method using the select base doesn't prevent all the columns registered by the query from being selected.
This ensures that all perfdata which can't be visualized are rendered exactly in the same order they are stored in the database after all vizualizable perfData are rendered.
For compatibility reasons all table rows should have borders at the start and at the end.
Since all the inconsistent column/redis key names have been renamed, we don't have to cache redis keys separately anymore. This PR applies all the `Service/Host` volatile state results directly to the respective state model.
Our tooling for icinga.com/docs fails to parse this link properly.
PHP performs loose comparison, so `0 == 'y'` is true. yay.
…@icinga.com>" and not sometimes as "Alexander Aleksandrovič Klimov <[email protected]>" to deduplicate myself in AUTHORS.
When icinga redis is down, icingadb also shut down after a few minutes. In this case, the real cause of icingadb being down is that redis is down. So we should check icinga redis status first.
The `isHasOne` check was made as the ipl-orm couldn't have known about specific relations. The relation collection is now part of this module so it can decide based on the name whether to collect one or not. fixes #534
…` class Since the vertical scrolling must disabled upon clip, only `overflow-x` property is set to `auto`. Similar to `performance-data-table` class in monitoring module. This fix disables the vertical scrolling in the `performance-data-table` when it overflows.
If the expiration time is set for a comment, we need to show the expire time. Use `ipl\Web\Widget\TimeUntil::class` for formatting and creating expiration time stamp. If the expiration time is not set show creation time. In this case use `ipl\Web\Widget\TimeAgo::class` for formatting and creating creation time stamp.
requires Icinga/icingaweb2/#4750