Skip to content

Commit

Permalink
Bugfix/OP-16874- Incorporated point #3 & #4 as vishal suggested
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhu-opsmx authored and yugaa22 committed Jun 29, 2023
1 parent 966da22 commit c61c17c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/core/src/modal/modals.less
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,9 @@ html .select2-container-multi {
margin: 4px 0 0 1px;
cursor: pointer;
background-color: transparent;

input {
padding: 5px !important;
}
&:before {
content: 'Select...';
position: absolute;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { DEFAULT_SKIP_WINDOW_TEXT } from './ExecutionWindowActions';
import { ExecutionWindowDayPicker } from './ExecutionWindowDayPicker';
import type { IStage } from '../../../../domain';
import type { IJitter, IRestrictedExecutionWindow, ITimelineWindow, IWindow } from './executionWindowsConfig';
import { HelpField } from '../../../../help/HelpField';
import {
CheckboxInput,
NumberInput,
Expand Down Expand Up @@ -196,7 +197,13 @@ export const ExecutionWindows = (props: IExecutionWindowsConfigProps) => {
{!isWindowExpression && (
<div className="checkbox">
<CheckboxInput
text={<strong> Restrict execution to specific time windows</strong>}
text={
<strong>
{' '}
Restrict execution to specific time windows{' '}
<HelpField content="When this option is enabled, the stage execution will be restricted for specific time period." />
</strong>
}
value={props.restrictExecutionDuringTimeWindow}
onChange={() =>
props.updateStageField({
Expand Down

0 comments on commit c61c17c

Please sign in to comment.