()
| 118 | }, |
| 119 | |
| 120 | getContentDescription () { |
| 121 | return (content) => { |
| 122 | if (!content) { |
| 123 | return '' |
| 124 | } |
| 125 | |
| 126 | return utils.i18n((content?.documentation?.specificArticles || []).find(({ name }) => name === 'Learning Goals'), 'body') || |
| 127 | utils.i18n(content, 'description') || |
| 128 | '' |
| 129 | } |
| 130 | }, |
| 131 | |
| 132 | getSelectedLanguage (state, language) { |
| 133 | return state.selectedLanguage |
nothing calls this directly
no outgoing calls
no test coverage detected