We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8750df9 commit bfdc320Copy full SHA for bfdc320
components/google_docs/actions/get-document/get-document.mjs
@@ -28,7 +28,7 @@ export default {
28
description: "Only return content for the specified tabs",
29
optional: true,
30
async options() {
31
- const { tabs } = await this.googleDocs.getDocument(this.docId, this.includeTabsContent);
+ const { tabs } = await this.googleDocs.getDocument(this.docId, true);
32
if (!tabs?.length) return [];
33
return tabs.map((tab) => ({
34
label: tab.tabProperties.title,
0 commit comments