Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(quantic): issue occurring with result title and quick view in salesforce service console addressed #4078

Merged
merged 42 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from 37 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
7adf769
feat(headless-commerce): use getVisitorID to set clientId (#3628)
sallainCoveo Feb 26, 2024
79d4d9a
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Feb 27, 2024
fe7251a
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Feb 29, 2024
fcbeaed
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Mar 1, 2024
bf5f573
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Mar 6, 2024
94aaa94
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Mar 8, 2024
3a56e2f
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Mar 11, 2024
986efe8
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Mar 12, 2024
5305dae
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Mar 14, 2024
ea7492a
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Mar 19, 2024
0936b36
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Mar 19, 2024
7a04068
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Mar 22, 2024
ddb8da2
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Mar 25, 2024
a33bf41
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Mar 27, 2024
e50d37e
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Mar 28, 2024
dd10cec
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Apr 4, 2024
6947098
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Apr 8, 2024
2895797
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Apr 12, 2024
e54f20f
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Apr 15, 2024
be7cbc5
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Apr 15, 2024
0409e34
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Apr 17, 2024
bc13eec
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Apr 18, 2024
ce982c7
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Apr 19, 2024
f016a13
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Apr 22, 2024
1655e44
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Apr 23, 2024
f2a797e
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Apr 25, 2024
440c622
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche May 9, 2024
f4651c3
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche May 15, 2024
d7520b2
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche May 16, 2024
d0f7f0b
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche May 20, 2024
905d0a3
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche May 23, 2024
b38661a
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche May 30, 2024
a9da0eb
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Jun 4, 2024
9a9172b
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Jun 5, 2024
15ed4bf
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Jun 7, 2024
8fbbe2c
Merge branch 'master' of https://github.com/coveo/ui-kit
mmitiche Jun 10, 2024
34066e5
logic to handle proxy object updated
mmitiche Jun 11, 2024
ac6eec8
Merge branch 'master' into SFINT-5571
mmitiche Jun 12, 2024
1cb75ef
comments added
mmitiche Jun 12, 2024
6aff128
Merge branch 'SFINT-5571' of https://github.com/coveo/ui-kit into SFI…
mmitiche Jun 12, 2024
505ee12
Update packages/quantic/force-app/main/default/lwc/quanticResultLink/…
mmitiche Jun 12, 2024
554b70e
Update packages/quantic/force-app/main/default/lwc/quanticResultQuick…
mmitiche Jun 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export default class QuanticResultLink extends NavigationMixin(
this.engine = engine;
ResultUtils.bindClickEventsOnResult(
this.engine,
this.result,
{...this.result, raw: {...this.result.raw}},
this.template,
this.headless.buildInteractiveResult
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,9 @@ export default class QuanticResultQuickview extends LightningElement {
const {pushRecentResult} = this.headless.loadRecentResultsActions(
this.engine
);
this.engine.dispatch(pushRecentResult(Object.create(this.result)));
this.engine.dispatch(
pushRecentResult({...this.result, raw: {...this.result.raw}})
);
}

closeQuickview() {
Expand Down
Loading