Skip to content

Commit

Permalink
pretty much in biz now
Browse files Browse the repository at this point in the history
  • Loading branch information
roncodes committed Jul 17, 2024
1 parent a57d49a commit 2a5131b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion addon/components/extension-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default class ExtensionCardComponent extends Component {
() => {
window.location.reload(true);
},
1000 * 2
600
);
removeParamFromCurrentUrl('extension_id');
modal.done();
Expand Down
2 changes: 1 addition & 1 deletion addon/controllers/installed.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default class InstalledController extends Controller {
() => {
window.location.reload(true);
},
1000 * 2
600
);
modal.done();
} catch (error) {
Expand Down
4 changes: 2 additions & 2 deletions addon/styles/registry-bridge-engine.css
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ body[data-theme='dark'] .extension-card-container {
justify-content: center;
border-radius: 0.5rem 0.5rem 0 0;
width: 100%;
height: 10rem;
height: 9rem;
}

.extension-card-container > .extension-card-icon-container > img {
width: 100%;
height: 10rem;
height: 9rem;
object-fit: cover;
border-radius: 0.5rem 0.5rem 0 0;
}
Expand Down
2 changes: 1 addition & 1 deletion addon/templates/purchased.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{{#each @model as |extension|}}
<div class="extension-card-container">
<div class="extension-card-icon-container">
<Image src={{extension.icon_url}} class="w-full h-36 rounded-t-lg" alt={{extension.name}} @fallbackSrc={{config "defaultValues.extensionIcon"}} />
<Image src={{extension.icon_url}} alt={{extension.name}} @fallbackSrc={{config "defaultValues.extensionIcon"}} />
</div>
<div class="extension-card-body-container">
<div class="flex flex-col">
Expand Down

0 comments on commit 2a5131b

Please sign in to comment.