Skip to content

Commit 2a7b29f

Browse files
fixs
1 parent 5b4e7bf commit 2a7b29f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/routes/explore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,14 @@ export default class ExploreRoute extends Route {
7979
val : params.is_online
8080
});
8181
}
82-
if (!params.has_image) {
82+
if (params.has_image) {
8383
filterOptions.push({
8484
name : 'original-image-url',
8585
op : 'ne',
8686
val : null
8787
});
8888
}
89-
if (!params.has_logo) {
89+
if (params.has_logo) {
9090
filterOptions.push({
9191
name : 'logo-url',
9292
op : 'ne',

app/templates/components/explore/side-bar.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,14 +234,14 @@
234234
<UiCheckbox
235235
@label={{t "Image"}}
236236
@checked={{if this.has_image "active"}}
237-
@onChange={{action "selectImages" "false"}} />
237+
@onChange={{action "selectImages" "true"}} />
238238
</div>
239239
<div class="field">
240240
<UiCheckbox
241241
@label={{t "Logo"}}
242242
@class="ui checkbox"
243243
@checked={{if this.has_logo "active"}}
244-
@onChange={{action "selectLogos" "false"}} />
244+
@onChange={{action "selectLogos" "true"}} />
245245
</div>
246246
</div>
247247
</div>

0 commit comments

Comments
 (0)