Skip to content

Commit 4bfe8fb

Browse files
Fix issue on search
1 parent 3c5e8df commit 4bfe8fb

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ The idea and initial work is inspired by @sngazm at https://github.com/lllyasvie
7575

7676

7777
## Update log
78+
1.5.6 Fix issue on search
79+
- Close issue https://github.com/toutjavascript/Fooocus-Log-Viewer/discussions/21
80+
7881
1.5.5 Fix issue on row parsing log.html with .jpeg generated images
7982
- Close issue https://github.com/toutjavascript/Fooocus-Log-Viewer/discussions/19#discussioncomment-9139711
8083

viewer.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<div id="app"></div>
4242
<script type="text/babel">
4343

44-
var LOGVIEWER_RELEASE="1.5.5"
44+
var LOGVIEWER_RELEASE="1.5.6"
4545

4646
$("span#logviewer-release").html("Release "+LOGVIEWER_RELEASE)
4747

@@ -2147,7 +2147,7 @@
21472147
let img=images[i];
21482148
img.dt=dt;
21492149
/* Check if the image is generated with a prompt and not with input image */
2150-
if (data.Prompt) {
2150+
if (img.Prompt) {
21512151
allImages.push(img);
21522152
if (allModels.includes(img["Base Model"])==false) {
21532153
allModels.push(img["Base Model"]);

0 commit comments

Comments
 (0)