Skip to content

Commit

Permalink
Merge pull request #10 from MassivDash/fixImage
Browse files Browse the repository at this point in the history
Fix image
  • Loading branch information
MassivDash authored Jan 22, 2023
2 parents b64187c + bafb1cb commit 84ac701
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s3_manager"
version = "0.9.0"
version = "0.9.1"
description = "S3 Manager: A tool to manage S3 buckets"
authors = ["Lukasz Celitan, @SpaceoutPL"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"package": {
"productName": "S3 Manager",
"version": "0.9.0"
"version": "0.9.1"
},
"tauri": {
"allowlist": {
Expand Down
5 changes: 4 additions & 1 deletion src/pages/image/image.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import IconButton from "src/components/iconButton/iconButton.svelte";
import { formatBytes, formatDate } from "src/lib/date";
import { showModal } from "src/store/modal";
import Scroller from "src/components/scroller/scroller.svelte";
import type { TauriError } from "src/types";
let bucket: string;
Expand Down Expand Up @@ -64,6 +65,8 @@
</h2>
</header>
<Tags {key} {bucket} />
<img src={response.url} alt={response.key} />
<Scroller>
<img src={response.url} alt={response.key} />
</Scroller>
</main>
{/if}

0 comments on commit 84ac701

Please sign in to comment.