mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
fix: app card height while no edit access for user (#5230)
* fix: app card height while no edit access for user * fix: firefox fix pagination width
This commit is contained in:
parent
cd37623f05
commit
b84d7687b3
2 changed files with 13 additions and 5 deletions
|
|
@ -100,8 +100,8 @@ export default function AppCard({
|
||||||
</h3>
|
</h3>
|
||||||
</ToolTip>
|
</ToolTip>
|
||||||
</div>
|
</div>
|
||||||
{canUpdate && (
|
<div className="app-creation-time-container">
|
||||||
<div>
|
{canUpdate && (
|
||||||
<div className="app-creation-time mute-text" data-cy="app-creation-time">
|
<div className="app-creation-time mute-text" data-cy="app-creation-time">
|
||||||
<ToolTip message={app.created_at && moment(app.created_at).format('dddd, MMMM Do YYYY, h:mm:ss a')}>
|
<ToolTip message={app.created_at && moment(app.created_at).format('dddd, MMMM Do YYYY, h:mm:ss a')}>
|
||||||
<span>{updated === 'just now' ? `Edited ${updated}` : `Edited ${updated} ago`}</span>
|
<span>{updated === 'just now' ? `Edited ${updated}` : `Edited ${updated} ago`}</span>
|
||||||
|
|
@ -109,8 +109,8 @@ export default function AppCard({
|
||||||
by{' '}
|
by{' '}
|
||||||
{`${app.user?.first_name ? app.user.first_name : ''} ${app.user?.last_name ? app.user.last_name : ''}`}
|
{`${app.user?.first_name ? app.user.first_name : ''} ${app.user?.last_name ? app.user.last_name : ''}`}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
)}
|
||||||
)}
|
</div>
|
||||||
<Fade visible={focused} className="row mt-2">
|
<Fade visible={focused} className="row mt-2">
|
||||||
{canUpdate && (
|
{canUpdate && (
|
||||||
<div className="col-6">
|
<div className="col-6">
|
||||||
|
|
|
||||||
|
|
@ -7285,7 +7285,8 @@ tbody {
|
||||||
.home-page-footer {
|
.home-page-footer {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 0px;
|
bottom: 0px;
|
||||||
width: -webkit-fill-available;
|
right: 0;
|
||||||
|
left: 336px; //48+288
|
||||||
}
|
}
|
||||||
|
|
||||||
.pagination-container {
|
.pagination-container {
|
||||||
|
|
@ -7390,6 +7391,13 @@ tbody {
|
||||||
height: 52px;
|
height: 52px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.homepage-app-card {
|
||||||
|
height: 188px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-creation-time-container {
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
.release-buttons {
|
.release-buttons {
|
||||||
height: 45px;
|
height: 45px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue