We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27ad6e9 commit eb4d8cdCopy full SHA for eb4d8cd
2 files changed
quick-links/Component.tsx
@@ -31,7 +31,7 @@ interface SidebarConfigData {
31
links_text?: string;
32
}
33
34
-interface ComponentProps {
+interface IProps {
35
navigate: (url: string) => void;
36
request: {
37
instance: {
@@ -41,7 +41,7 @@ interface ComponentProps {
41
hasDivider?: boolean;
42
43
44
-const Component = ({ navigate, request, hasDivider }: ComponentProps) => {
+const Component = ({ navigate, request, hasDivider }: IProps) => {
45
46
const { t } = useTranslation('plugin', {
47
keyPrefix: 'quick_links.frontend',
quick-links/info.yaml
@@ -17,6 +17,6 @@
17
18
slug_name: quick_links
19
type: sidebar
20
-version: 1.0.2
+version: 1.0.3
21
author: answerdev
22
link: https://github.com/apache/answer-plugins/tree/main/quick-links
0 commit comments