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: remove faq plus sample app in extension sample gallery page #1081

Merged
merged 2 commits into from
May 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 6 additions & 6 deletions packages/fx-core/src/core/question.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,6 @@ export const SampleSelect: SingleSelectQuestion = {
name: CoreQuestionNames.Samples,
title: "Start from a sample",
option: [
{
id: "in-meeting-app",
label: "In-meeting App",
detail: "A template for apps using only in the context of a Teams meeting",
data: "https://github.com/OfficeDev/TeamsFx-Samples/archive/refs/heads/main.zip",
},
{
id: "todo-list-with-Azure-backend",
label: "Todo List with backend on Azure",
Expand All @@ -116,6 +110,12 @@ export const SampleSelect: SingleSelectQuestion = {
detail: "Knowledge sharing app contains a Tab and a Message Extension",
data: "https://github.com/OfficeDev/TeamsFx-Samples/archive/refs/heads/main.zip",
},
{
id: "in-meeting-app",
label: "In-meeting App",
detail: "A template for apps using only in the context of a Teams meeting",
data: "https://github.com/OfficeDev/TeamsFx-Samples/archive/refs/heads/main.zip",
},
],
placeholder: "Select a sample",
returnObject: true,
Expand Down
8 changes: 0 additions & 8 deletions packages/vscode-extension/src/controls/SampleGallery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,6 @@ export default class SampleGallery extends React.Component<any, any> {
sampleAppFolder="share-now"
sampleAppUrl="https://github.com/OfficeDev/TeamsFx-Samples/archive/refs/heads/main.zip"
/>
<SampleAppCard
image={FAQPlus}
tags={["Easy QnA", "Bot", "JS"]}
title="FAQ Plus"
description="FAQ Plus is a conversational Q&A bot providing an easy way to answer frequently asked questions by users. One can ask a question and the bot responds with information in the knowledge base. If the answer is not in the knowledge base, the bot submits the question to a pre-configured team of experts who help provide support."
sampleAppFolder="faq-plus"
sampleAppUrl="https://github.com/OfficeDev/TeamsFx-Samples/archive/refs/heads/main.zip"
/>
<SampleAppCard
image={InMeetingApp}
tags={["Meeting extension", "JS"]}
Expand Down