Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iamareebjamal committed Aug 23, 2020
1 parent 29e0475 commit 024b04a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 19 deletions.
8 changes: 5 additions & 3 deletions app/templates/components/public/speaker-item.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,11 @@
{{#each this.speaker.sessions as |session|}}
{{#if (and (eq session.deletedAt null) (or (eq session.state 'confirmed') (eq session.state 'accepted')))}}
{{#if session.startsAt}}
<strong>
{{general-date session.startsAt @timezone}}
</strong>
<p>
<strong>
{{general-date session.startsAt @timezone}}
</strong>
</p>
{{/if}}
<a href="{{href-to 'public.sessions' (query-params session_id=session.id)}}">
<div class="ui fluid rounded-default p-4" style={{css color=session.track.fontColor background-color=session.track.color}}>
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/helpers/text-color-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ module('Integration | Helper | text-color', function(hooks) {

test('it renders', async function(assert) {
await render(hbs`{{text-color '#000000'}}`);
assert.equal(this.element.textContent.trim(), '#FFFFFF');
assert.equal(this.element.textContent.trim(), '#fff');
await render(hbs`{{text-color '#FFFFFF'}}`);
assert.equal(this.element.textContent.trim(), '#000000');
assert.equal(this.element.textContent.trim(), '#000');
});
});

15 changes: 1 addition & 14 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1483,7 +1483,7 @@
hi-base32 "^0.5.0"
zalgo-promise "^1.0.28"

"@sentry/[email protected]", "@sentry/apm@^5.20.1":
"@sentry/[email protected]", "@sentry/apm@^5.21.3":
version "5.21.3"
resolved "https://registry.yarnpkg.com/@sentry/apm/-/apm-5.21.3.tgz#513f0432f70dd23b29431d7af10cbdfa0befcc51"
integrity sha512-5Hl/ZJV9dm1a/SskwdaTX34GsgmrWGMeGPIHTkrI5iXMHObHUjbnSuPgIld/Ffi19GpjPsjEV3kxA3AQnHQCqg==
Expand Down Expand Up @@ -1558,24 +1558,11 @@
lru_map "^0.3.3"
tslib "^1.9.3"

"@sentry/[email protected]":
version "5.21.1"
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-5.21.1.tgz#b603afa2d8c331cf520ab8cef986151b18a72e73"
integrity sha512-hFN4aDduMpjj6vZSIIp+9kSr8MglcKO/UmbuUXN6hKLewhxt+Zj2wjXN7ulSs5OK5mjXP9QLA5YJvVQsl2//qw==

"@sentry/[email protected]":
version "5.21.3"
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-5.21.3.tgz#0147f0b76c4b75559343fd46863f9b004ff3d7d4"
integrity sha512-GU0lFZkeGJuCuNN3D8lXyBku6M1UtZzV8f8U4a4nGGFS0R3VqxDHrC3eupRc8Vut/1xfgvFz1qCkPstXUrEBuA==

"@sentry/[email protected]":
version "5.21.1"
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-5.21.1.tgz#fb0e96e6134a9d1e9e6eb62c1d9e0c59faac8c25"
integrity sha512-p5vPuc7+GfOmW8CXxWd0samS77Q00YrN8q5TC/ztF8nBhEF18GiMeWAdQnlSwt3iWal3q3gSSrbF4c9guIugng==
dependencies:
"@sentry/types" "5.21.1"
tslib "^1.9.3"

"@sentry/[email protected]":
version "5.21.3"
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-5.21.3.tgz#f55237bab454a43edcf2cd77fa2753e7509d7a94"
Expand Down

0 comments on commit 024b04a

Please sign in to comment.