Skip to content

Commit 6a80643

Browse files
committed
Merge branch 'staging'
2 parents 82b3868 + 1d843c2 commit 6a80643

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

src/components/blocs/dashboard/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ export default function Dashboard() {
5656
chart: { type: 'bar' },
5757
credits: { enabled: false },
5858
legend: { enabled: false },
59+
accessibility: { enabled: false },
5960
series: [
6061
{ data: topUsers.map((item) => item.totalOperations), name: "Nombre d'opérations" },
6162
],
@@ -87,6 +88,8 @@ export default function Dashboard() {
8788
chart: { type: 'bar' },
8889
credits: { enabled: false },
8990
legend: { enabled: false },
91+
accessibility: { enabled: false },
92+
9093
series: [
9194
{ data: topObjects.map((item) => item.totalOperations), name: "Nombre d'opérations" },
9295
],

src/components/blocs/weblinks/constants.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const WEBLINKS_TYPES = [
2828
'CanalU',
2929
'ServicePublic',
3030
'PiaWEB',
31-
// 'Sujet d\'actualités sue le site web du journal Le Monde'
31+
// 'Sujet d\'actualités sur le site web du journal Le Monde'
3232
'EdCF',
3333
'OE1',
3434
'OE2',
@@ -39,6 +39,7 @@ export const WEBLINKS_TYPES = [
3939
'jorfsearch',
4040
'TalentCNRS',
4141
'TheConversation',
42+
'Lieux inspirants',
4243
'BSO',
4344
'',
4445
];

src/components/card/key-value-card.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,6 @@ KeyValueCard.defaultProps = {
9595
linkIn: null,
9696
linkTo: null,
9797
onEdit: null,
98-
titleAsText: false,
98+
titleAsText: null,
9999
tooltip: null,
100100
};

src/components/forms/weblinks/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ const regexpValidateWebSite = {
3333
CanalU: /^(https:\/\/)?(www.)?canal-u.tv\/chaines\/[\w\-_]*(.fr)?$/,
3434
ServicePublic: /^(https:\/\/)?lannuaire.service-public.fr\/(gouvernement|institutions-juridictions|autorites-independantes)\/[A-Za-z0-9/:%+.,#?!@&=-]+$/,
3535
LeMonde: /(^https:\/\/)?(www.)?lemonde.fr\/[a-z]+(-[a-z]+)*\/$/,
36+
'Lieux inspirants': /(^https:\/\/)?inspiration\.dgesip\.fr\/Espaces\/Etablissement\/\w{5}\/$/,
3637
TheConversation: /(^https:\/\/)?(www.)?theconversation.com\/profiles\/[a-z-]{1,}-[0-9]{1,}$/,
3738
TalentCNRS: /(^https:\/\/)?(www.)?cnrs\.fr\/fr\/personne\/[a-z-]+(-0)?$/,
3839
IUF: /(^https:\/\/)?(www.)?iufrance\.fr\/les-membres-de-liuf\/membre\/[1-9]\d*([a-z-]*)?\.html$/,

src/components/jobs/components/create-task-form.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default function CreateTaskForm({ definitions, onCancel, onCreate }) {
4242
<Select
4343
required
4444
label="Choisissez un tâche"
45-
options={[{ label: 'Séléctionnez...', value: '', disabled: true, hidden: true }, ...definitions.map((def) => ({ label: def, value: def }))]}
45+
options={[{ label: 'Sélectionnez...', value: '', disabled: true, hidden: true }, ...definitions.map((def) => ({ label: def, value: def }))]}
4646
selected={form.name}
4747
onChange={(e) => updateForm({ name: e.target.value })}
4848
message={(showErrors && errors.name) ? errors.name : undefined}
@@ -52,8 +52,8 @@ export default function CreateTaskForm({ definitions, onCancel, onCreate }) {
5252
<Col n="12">
5353
<TextInput
5454
textarea
55-
label="Indiquez des paramêtres pour cette tâche"
56-
hint="Les paramêtres de la tâche doivent être au format json"
55+
label="Indiquez des paramètres pour cette tâche"
56+
hint="Les paramètres de la tâche doivent être au format json"
5757
value={form.data || ''}
5858
onChange={(e) => updateForm({ data: e.target.value })}
5959
message={(showErrors && errors.data) ? errors.data : null}
@@ -78,7 +78,7 @@ export default function CreateTaskForm({ definitions, onCancel, onCreate }) {
7878
label="De manière répétée"
7979
value="every"
8080
checked={form.type === 'every'}
81-
hint="Cette tâche sera répétée à un interval régulier définie par une expression cron"
81+
hint="Cette tâche sera répétée à un interval régulier défini par une expression cron"
8282
/>
8383
</RadioGroup>
8484
</Col>
@@ -113,6 +113,7 @@ CreateTaskForm.propTypes = {
113113
onCancel: PropTypes.func,
114114
onCreate: PropTypes.func,
115115
};
116+
116117
CreateTaskForm.defaultProps = {
117118
onCancel: null,
118119
onCreate: null,

0 commit comments

Comments
 (0)