Skip to content

Commit

Permalink
Merge pull request #2 from Priyanka-Microsoft/feature/8534-pipeline-i…
Browse files Browse the repository at this point in the history
…s-failing

Added password secret
  • Loading branch information
Priyanka-Microsoft authored Nov 6, 2024
2 parents 06c8478 + 80a8dca commit 8f93274
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-clientadvisor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
with:
registry: pslpricicdcontainerreg.azurecr.io
username: pslpricicdcontainerreg
password_secret: ${{ matrix.password_secret }}
app_name: ${{ matrix.app_name }}
dockerfile: ${{ matrix.dockerfile }}
push: true # Adjust this logic as necessary
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-researchassistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
with:
registry: pslpriracontainerreg.azurecr.io
username: pslpriracontainerreg
password_secret: ${{ matrix.password_secret }}
app_name: ${{ matrix.app_name }}
dockerfile: ${{ matrix.dockerfile }}
push: true # Adjust this logic as necessary
Expand Down
2 changes: 1 addition & 1 deletion ClientAdvisor/App/frontend/src/pages/layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const Layout = () => {
const [isSharePanelOpen, setIsSharePanelOpen] = useState<boolean>(false)
const [copyClicked, setCopyClicked] = useState<boolean>(false)
const [copyText, setCopyText] = useState<string>('Copy URL')
const [shareLabel, setShareLabel] = useState<string | undefined>('Share')
const [shareLabel, setShareLabel] = useState<string | undefined>('Share12')
const [hideHistoryLabel, setHideHistoryLabel] = useState<string>('Hide chat history')
const [showHistoryLabel, setShowHistoryLabel] = useState<string>('Show chat history')
const appStateContext = useContext(AppStateContext)
Expand Down
2 changes: 1 addition & 1 deletion ResearchAssistant/App/frontend/src/pages/chat/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ const Chat = ({ chatType }: Props) => {
} else {
conversation = appStateContext?.state?.currentChat
if(!conversation) {
console.error('Conversation not found.')
console.error(' Conversation not found. ')
setIsLoading(false)
setShowLoadingMessage(false)
abortFuncs.current = abortFuncs.current.filter(a => a !== abortController)
Expand Down
2 changes: 1 addition & 1 deletion ResearchAssistant/App/frontend/src/pages/layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const Layout = (): JSX.Element => {
}
}}
>
<h1 className={classes.headerTitle}>Grant Writer</h1>
<h1 className={classes.headerTitle}>Grant Writer!!!</h1>
</Link>
</Stack>

Expand Down

0 comments on commit 8f93274

Please sign in to comment.