🖋️ ajoute un titre pour l'aide emploi franc
parent
378ac7306a
commit
fe3b298c66
|
@ -1285,8 +1285,8 @@ contrat salarié . aides employeur . emploi franc . éligible:
|
|||
question.en: '[automatic] Are you eligible for Employment-Franc assistance for
|
||||
this hiring?'
|
||||
question.fr: Êtes-vous éligible à l'aide emploi-franc pour cette embauche ?
|
||||
titre.en: '[automatic] eligible'
|
||||
titre.fr: éligible
|
||||
titre.en: '[automatic] eligibility for open employment assistance'
|
||||
titre.fr: éligibilité à l'aide emploi franc
|
||||
contrat salarié . allocations familiales:
|
||||
titre.en: Family allowances
|
||||
titre.fr: allocations familiales
|
||||
|
|
|
@ -2051,6 +2051,7 @@ contrat salarié . aides employeur . emploi franc:
|
|||
Fiche emploi franc: https://travail-emploi.gouv.fr/emploi/emplois-francs/article/embaucher-une-personne-en-emploi-franc
|
||||
|
||||
contrat salarié . aides employeur . emploi franc . éligible:
|
||||
titre: éligibilité à l'aide emploi franc
|
||||
applicable si:
|
||||
une de ces conditions:
|
||||
- CDI
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import {
|
||||
ThemeColorsContext,
|
||||
ThemeColorsProvider,
|
||||
ThemeColorsProvider
|
||||
} from 'Components/utils/colors'
|
||||
import { ScrollToTop } from 'Components/utils/Scroll'
|
||||
import urssafLogo from 'Images/urssaf.svg'
|
||||
|
@ -24,8 +24,8 @@ function IntegrationCustomizer() {
|
|||
const integrableModuleNames = useMemo(
|
||||
() =>
|
||||
Object.values(simulators)
|
||||
.filter((s) => s.iframe && !s.private)
|
||||
.map((s) => s.iframe),
|
||||
.filter(s => s.iframe && !s.private)
|
||||
.map(s => s.iframe),
|
||||
[simulators]
|
||||
)
|
||||
const defaultModuleFromUrl =
|
||||
|
@ -86,10 +86,10 @@ function IntegrationCustomizer() {
|
|||
{emoji('🚩')}
|
||||
</h3>
|
||||
<select
|
||||
onChange={(event) => setCurrentModule(event.target.value)}
|
||||
onChange={event => setCurrentModule(event.target.value)}
|
||||
value={currentModule}
|
||||
>
|
||||
{integrableModuleNames.map((name) => (
|
||||
{integrableModuleNames.map(name => (
|
||||
<option key={name}>{name}</option>
|
||||
))}
|
||||
</select>
|
||||
|
@ -241,7 +241,7 @@ type IntegrationCodeProps = {
|
|||
|
||||
function IntegrationCode({
|
||||
module = 'simulateur-embauche',
|
||||
color,
|
||||
color
|
||||
}: IntegrationCodeProps) {
|
||||
const codeRef = useRef<HTMLDivElement>(null)
|
||||
const [secondClick, setSecondClick] = useState(false)
|
||||
|
|
Loading…
Reference in New Issue