这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions console/src/components/Services/Data/RawSQL/RawSQL.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,7 @@ const RawSQL = ({
<h4 className={styles.subheading_text}>SQL Result:</h4>
<div className={styles.tableContainer}>
<table
className={`table table-bordered table-striped table-hover ${
styles.table
} `}
className={`table table-bordered table-striped table-hover ${styles.table} `}
>
<thead>
<tr>{getTableHeadings()}</tr>
Expand Down Expand Up @@ -296,7 +294,7 @@ const RawSQL = ({
<label>
<input
checked={isCascadeChecked}
className={styles.add_mar_right_small}
className={`${styles.add_mar_right_small} ${styles.cursorPointer}`}
id="cascade-checkbox"
type="checkbox"
onChange={() => {
Expand Down Expand Up @@ -331,7 +329,7 @@ const RawSQL = ({
<label>
<input
checked={isTableTrackChecked}
className={styles.add_mar_right_small}
className={`${styles.add_mar_right_small} ${styles.cursorPointer}`}
id="track-checkbox"
type="checkbox"
onChange={dispatchTrackThis}
Expand Down Expand Up @@ -476,9 +474,7 @@ const RawSQL = ({
</div>

<div
className={`${styles.padd_left_remove} ${
styles.add_mar_bottom
} col-xs-8`}
className={`${styles.padd_left_remove} ${styles.add_mar_bottom} col-xs-8`}
>
{getTrackThisSection()}
{getMetadataCascadeSection()}
Expand Down