From 5be5fedaeeecaf85a8e1928ac3dad8a5bfc74abf Mon Sep 17 00:00:00 2001 From: Mathias Jakobsen Date: Mon, 8 Jul 2024 14:40:02 +0100 Subject: [PATCH] Merge pull request #19311 from overleaf/mj-bibtex-conference-snippet [cm6] Add author and booktitle to conference bibtex snippet GitOrigin-RevId: df248c83322f923c17065f63c5e077b741032c7d --- .../source-editor/languages/bibtex/completions/snippets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/frontend/js/features/source-editor/languages/bibtex/completions/snippets.ts b/services/web/frontend/js/features/source-editor/languages/bibtex/completions/snippets.ts index 9da2061fbf..26fa7b02c0 100644 --- a/services/web/frontend/js/features/source-editor/languages/bibtex/completions/snippets.ts +++ b/services/web/frontend/js/features/source-editor/languages/bibtex/completions/snippets.ts @@ -20,7 +20,7 @@ const environments: Environment[] = [ }, { name: 'conference', - requiredAttributes: ['key', 'title', 'year'], + requiredAttributes: ['author', 'booktitle', 'title', 'year'], }, { name: 'inbook',