Skip to content

Commit 3409271

Browse files
authored
Merge pull request #307 from devtron-labs/feat/airgapped-release
feat: add support for air gapped installation in release
2 parents aa9cf99 + 76e1164 commit 3409271

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtron-labs/devtron-fe-common-lib",
3-
"version": "0.3.21",
3+
"version": "0.3.22",
44
"description": "Supporting common component library",
55
"type": "module",
66
"main": "dist/index.js",

src/Common/EmptyState/emptyState.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@
2727
max-height: 200px;
2828
width: auto;
2929
}
30+
.button svg {
31+
height: 100%;
32+
max-height: none;
33+
width: 100%;
34+
}
3035
h1,
3136
h2,
3237
h3,

src/Common/SortableTableHeaderCell/SortableTableHeaderCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const SortableTableHeaderCell = ({
6363
return (
6464
<button
6565
type="button"
66-
className={`dc__transparent p-0 bcn-0 cn-7 flex dc__content-start dc__gap-4 dc__select-text ${!isSortable ? 'cursor-default' : ''}`}
66+
className={`dc__transparent p-0 cn-7 flex dc__content-start dc__gap-4 dc__select-text ${!isSortable ? 'cursor-default' : ''}`}
6767
onClick={isSortable ? triggerSorting : noop}
6868
disabled={disabled}
6969
>

src/Common/Tooltip/Tooltip.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const Tooltip = ({
3737
maxWidth=""
3838
{...rest}
3939
{...(shortcutKeyCombo ? { content: <ShortcutKeyComboTooltipContent {...shortcutKeyCombo} /> } : {})}
40-
className={`${shortcutKeyCombo ? 'shortcut-keys__tippy' : 'default-tt'} ${wordBreak ? 'dc__word-break-all' : ''} dc__mxw-200 ${rest.className ?? ''}`}
40+
className={`${shortcutKeyCombo ? 'shortcut-keys__tippy' : 'default-tt'} ${wordBreak ? 'dc__word-break' : ''} dc__mxw-200 ${rest.className ?? ''}`}
4141
>
4242
{cloneElement(child, { ...child.props, onMouseEnter: handleMouseEnterEvent })}
4343
</TippyJS>

src/Shared/Components/Button/Button.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ const Button = ({
180180
) : (
181181
<>
182182
{startIcon && <span className={iconClass}>{startIcon}</span>}
183-
<span className="dc__mxw-150 dc__align-left dc__truncate">{text}</span>
183+
<span className="dc__align-left">{text}</span>
184184
{endIcon && <span className={iconClass}>{endIcon}</span>}
185185
</>
186186
)}

0 commit comments

Comments
 (0)