Skip to content

Commit

Permalink
typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ShashiSubramanya committed Dec 19, 2024
1 parent 57ed0b3 commit 70fd7a9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions modules/ROOT/pages/full-app-customize.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -215,16 +215,16 @@ On ThoughtSpot instances, the search box located in the top navigation bar allow

If the Natural Language Search feature is enabled on the instance, the search bar on the Home page allows users to explore Natural Language Search capabilities and view AI-generated answers.

In the ThoughtSpot 10.3.0.cl release, the search experience in the Home page was modified to decouple Natural Language Search and Object Search. On instances running 10.3.0.cl and later versions, the search experience on the Home page is set to Object Search by default. To enable access to Natural Language Search feature for your end users, use one of the following options: +
In the ThoughtSpot 10.3.0.cl release, the search experience in the Home page was modified to decouple Natural Language Search and Object Search. On instances running 10.3.0.cl and later versions, the search experience on the Home page is set to Object Search by default. To enable access to Natural Language Search for your end users, use one of the following options: +

* Create a xref:embed-nls.adoc[Natural Language Search page using the SageEmbed SDK package] and build a navigation to this page from your embedding application.
* xref:full-app-customize.adoc#_customize_search_experience[Switch the Search experience on the Home page] to Natural Language Search.

[IMPORTANT]
====
If your instance is being upgraded from 10.1.0.cl to 10.5.0.cl, Natural Language Search is set as the default search experience for the Home page and the split search experience will be turned off by default. For applications embedding full ThoughtSpot experience, the `isUnifiedSearchExperienceEnabled` property set to `true` in the SDK. Your users can continue to use the unified experience until it is deprecated. Developers can choose to disable unified search experience and customize the home page search experience for their users.
If your instance is pgraded from 10.1.0.cl to 10.5.0.cl, Natural Language Search will be set as the default search experience for the Home page and the split search experience will be turned off by default. For applications embedding full ThoughtSpot experience, the `isUnifiedSearchExperienceEnabled` property will be set to `true` in the SDK. Your users can continue to use the unified experience until it is deprecated. Developers can choose to disable unified search experience and customize the Home page search experience for their users if required.
For instances upgrading from 10.3.0.cl or 10.4.0.cl to 10.5.0.cl, the unified search experience is disabled by default and the `isUnifiedSearchExperienceEnabled` property is set to `false`.
If your instance is upgraded from 10.3.0.cl or 10.4.0.cl to 10.5.0.cl, the unified search experience will be disabled by default and the `isUnifiedSearchExperienceEnabled` property will be set to `false`.
====

////
Expand Down
8 changes: 4 additions & 4 deletions modules/ROOT/pages/prerender.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ const offset = getOffset(placeholderDiv);
//Move the renderer into those bounds
renderDiv.style.opacity = 1;
renderDiv.style.top = offset.top;
renderDiv.style.left = offset.left;
renderDiv.style.width = coords.width;
renderDiv.style.height = coords.height;
renderDiv.style.top = offset.top + "px";
renderDiv.style.left = offset.left + "px";
renderDiv.style.width = coords.width + "px";
renderDiv.style.height = coords.height + "px";
function getOffset(el) {
var _x = 0;
Expand Down
4 changes: 2 additions & 2 deletions modules/ROOT/pages/whats-new.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ This page lists new features, enhancements, and deprecated functionality in Thou

=== Default search experience on embedded ThoughtSpot Home page

If your ThoughtSpot instance is being upgraded from 10.1.0.cl to 10.5.0.cl, note that the Natural Language Search is set as the default search experience on the embedded ThoughtSpot Home page. The split search experience, which was introduced in 10.3.0.cl, will be turned off by default. For applications embedding full ThoughtSpot experience, the `isUnifiedSearchExperienceEnabled` property set to `true` in the Visual Embed SDK. Your application users can continue to use the unified experience until it is deprecated. However, developers can choose to disable the unified search experience and customize the home page search experience for their users.
If your ThoughtSpot instance is upgraded from 10.1.0.cl to 10.5.0.cl, the Natural Language Search interface will be the default search experience on the embedded ThoughtSpot Home page. The split search experience, which was introduced in 10.3.0.cl, will be turned off by default on these instances. For applications embedding full ThoughtSpot experience, the `isUnifiedSearchExperienceEnabled` property will be set to `true` in the Visual Embed SDK. Your application users can continue to use the unified experience until it is deprecated. However, developers can choose to disable the unified search experience and customize the Home page search experience for their application users.

For instances upgrading from 10.3.0.cl or 10.4.0.cl to 10.5.0.cl, the unified search experience is disabled by default and the `isUnifiedSearchExperienceEnabled` property is set to `false` in the Visual Embed SDK. On these instances, Object Search is set as the default search experience on the embedded ThoughtSpot Home page and developers can switch to AI Search component by setting `homePageSearchBarMode` property to `aiAnswer`.
On instances upgraded from 10.3.0.cl or 10.4.0.cl to 10.5.0.cl, Object Search will be the default search experience on the embedded ThoughtSpot Home page. The unified search experience will be disabled by default and the `isUnifiedSearchExperienceEnabled` property in the Visual Embed SDK will be set to `false`. If required, developers can switch to AI Search experience by setting the `homePageSearchBarMode` property to `aiAnswer`.

For more information, see xref:full-app-customize.adoc#_search_experience_on_home_page[Home page search experience customization].

Expand Down

0 comments on commit 70fd7a9

Please sign in to comment.