Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/shridhar-tl/jira-assistant
Browse files Browse the repository at this point in the history
… into package
  • Loading branch information
shridhar-tl committed Dec 31, 2024
2 parents d696f1c + cd8ada9 commit facc3de
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/controls/TextBox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class TextBox extends PureComponent {
if (multiline) {
return (
<InputTextarea rows={rows} value={value} autoResize={autoResize} keyfilter={keyfilter} style={style} maxLength={maxLength} disabled={disabled}
className={`w-p-100 ${className || ''}`} placeholder={placeholder} onChange={this.onChange} onKeyPress={this.keyPress}
className={`w-100 ${className || ''}`} placeholder={placeholder} onChange={this.onChange} onKeyPress={this.keyPress}
onBlur={this.props.onBlur} />
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/dialogs/AddWorklog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ class AddWorklog extends BaseDialog {
<strong>Ticket no</strong>
</div>
<div className="col-sm-9">
<IssuePicker value={log.ticketNo} useDisplay={true} className="w-p-100" tabIndex="3"
<IssuePicker value={log.ticketNo} useDisplay={true} className="w-100" tabIndex="3"
placeholder="Enter the ticket number or start typing the summary to get suggestion"
disabled={log.isUploaded} maxLength={20} onPick={(val) => this.setValue("ticketNo", val, true)} />
<span className={`help-block ${vald.ticketNo ? '' : 'msg-error'}`}>Provide the ticket no on which you had to log your work</span>
Expand Down
6 changes: 1 addition & 5 deletions src/scss/_custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,14 @@ body {

/* #region Width related styles */

.w-p-100 {
width: 100%;
}

.w-80 {
width: 80px;
}

/* #endregion */

/* #region Padding related styles */
.no-pad {
.no-padding {
padding: 0 !important;
}

Expand Down
2 changes: 1 addition & 1 deletion src/views/reports/custom-groupable/QueryEditor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class QueryEditor extends BaseGadget {

return super.renderBase(
<div className="query-editor">
<TabView panelContainerClassName="no-pad">
<TabView panelContainerClassName="p-0">
<TabPanel header="How to use">
<div className="pad-8">
<strong>Filter (JQL):</strong> JQL (Jira Query Language) is a powerful tool for filtering and extracting data from Jira.
Expand Down
5 changes: 0 additions & 5 deletions src/views/reports/say-do-ratio/ReportInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@ function HelpText() {
<li><strong>Sprints:</strong> Each sprint is represented in individual columns, showing the average Say-Do Ratio for that sprint.</li>
</ul>
</p>
<p>
<strong>Chart Structure:</strong>
The Y-axis represents story points, and the Y1-axis represents cycle time.
The chart displays Velocity, Committed Story Points, and Completed Story Points as lines, with Cycle Time as bars.
</p>

<div>
<p>
Expand Down

0 comments on commit facc3de

Please sign in to comment.