Skip to content

Commit 8d7924a

Browse files
reverted the baseurl to point to dev branch and changed document to show content instead of full content as full content is no longer used in index
1 parent 4433d59 commit 8d7924a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

frontend/src/pages/document/Document.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const Document = (): JSX.Element => {
3939
{isLoading ? ( // Step 4
4040
<p>Loading...</p>
4141
) : document ? (
42-
<p>{document.full_content}</p>
42+
<p>{document.content}</p>
4343
) : (
4444
<h1>Document not found. Please try again.</h1>
4545
)}

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ var solutionPrefix = 'dg${padLeft(take(uniqueId, 12), 12, '0')}'
6262
var resourceGroupLocation = resourceGroup().location
6363

6464
var solutionLocation = resourceGroupLocation
65-
var baseUrl = 'https://raw.githubusercontent.com/microsoft/Generic-Build-your-own-copilot-Solution-Accelerator/add-appser-envvar-values/'
65+
var baseUrl = 'https://raw.githubusercontent.com/microsoft/Generic-Build-your-own-copilot-Solution-Accelerator/dev/'
6666

6767
var ApplicationInsightsName = 'appins-${solutionPrefix}'
6868
var WorkspaceName = 'worksp-${solutionPrefix}'

infra/main.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"_generator": {
66
"name": "bicep",
77
"version": "0.33.93.31351",
8-
"templateHash": "12213473806385436916"
8+
"templateHash": "4863966964832108128"
99
}
1010
},
1111
"parameters": {
@@ -92,7 +92,7 @@
9292
"solutionPrefix": "[format('dg{0}', padLeft(take(variables('uniqueId'), 12), 12, '0'))]",
9393
"resourceGroupLocation": "[resourceGroup().location]",
9494
"solutionLocation": "[variables('resourceGroupLocation')]",
95-
"baseUrl": "https://raw.githubusercontent.com/microsoft/Generic-Build-your-own-copilot-Solution-Accelerator/add-appser-envvar-values/",
95+
"baseUrl": "https://raw.githubusercontent.com/microsoft/Generic-Build-your-own-copilot-Solution-Accelerator/dev/",
9696
"ApplicationInsightsName": "[format('appins-{0}', variables('solutionPrefix'))]",
9797
"WorkspaceName": "[format('worksp-{0}', variables('solutionPrefix'))]"
9898
},

0 commit comments

Comments
 (0)