You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Display a message when running a konnector is not possible
When a konnector is clientSide and there is not launcher available in
the environment, Harvest will now display a message and hide the "run"
button.
The same message is also displayed when trying to configure a new
account.
exports[`AccountForm should render normally when client side konnector with launcher 1`] =`
133
+
<div
134
+
onFocusCapture={[Function]}
135
+
onKeyUp={[Function]}
136
+
>
137
+
<React.Fragment>
138
+
<AccountFields
139
+
fields={Object {}}
140
+
initialValues={Object {}}
141
+
inputRefByName={[Function]}
142
+
t={[Function]}
143
+
/>
144
+
<DefaultButton
145
+
className="u-mt-2 u-mb-1-half"
146
+
disabled={false}
147
+
extension="full"
148
+
label="Connect"
149
+
onClick={[Function]}
150
+
/>
151
+
</React.Fragment>
152
+
</div>
153
+
`;
154
+
155
+
exports[`AccountForm should render with specific message when client side konnector without launcher 1`] =`
156
+
<div
157
+
onFocusCapture={[Function]}
158
+
onKeyUp={[Function]}
159
+
>
160
+
<React.Fragment>
161
+
<Media
162
+
align="top"
163
+
>
164
+
<Img
165
+
className="u-m-1"
166
+
>
167
+
<Icon
168
+
icon={[Function]}
169
+
spin={false}
170
+
/>
171
+
</Img>
172
+
<Bd
173
+
className="u-m-1"
174
+
>
175
+
<ForwardRef(WithStyles)
176
+
variant="body1"
177
+
>
178
+
The testkonnector application uses a brand-new and efficient system for retrieving your data from your Cozy. This action is only accessible from the Cozy mobile app.
Copy file name to clipboardExpand all lines: packages/cozy-harvest-lib/src/locales/en.json
+5-1
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,11 @@
17
17
},
18
18
"disconnect": {
19
19
"button": "Disconnect this account"
20
-
}
20
+
},
21
+
"installFlagship": {
22
+
"label": "Install Cozy on mobile"
23
+
},
24
+
"notClientSide": "The %{name} application uses a brand-new and efficient system for retrieving your data from your Cozy. This action is only accessible from the Cozy mobile app."
Copy file name to clipboardExpand all lines: packages/cozy-harvest-lib/src/locales/fr.json
+5-1
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,11 @@
17
17
},
18
18
"disconnect": {
19
19
"button": "Déconnecter le compte"
20
-
}
20
+
},
21
+
"installFlagship": {
22
+
"label": "Install Cozy on mobile"
23
+
},
24
+
"notClientSide": "L'application %{name} utilise un nouveau système plus efficace pour la récupération de vos données dans votre Cozy. Cette action est uniquement accessible depuis l’application mobile Cozy."
0 commit comments