- hid criteria from bando view page;

This commit is contained in:
Vitalii Kiiko
2024-10-15 10:13:54 +02:00
parent 49765c98e6
commit 36c1cf742b
3 changed files with 7 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
import React, { useState, useEffect, useRef } from 'react';
import { __, sprintf } from '@wordpress/i18n';
import { __ } from '@wordpress/i18n';
import { useNavigate, useParams } from 'react-router-dom';
import { is, isEmpty, isNil } from 'ramda';
@@ -161,7 +161,7 @@ const BandoView = () => {
</div>
</div>
<div className="appPageSection__withBorder">
{/*<div className="appPageSection__withBorder">
<h2>{__('Criteri di Valutazione', 'gepafin')}</h2>
<div className="row rowContent">
<ul>
@@ -170,7 +170,7 @@ const BandoView = () => {
</li>)}
</ul>
</div>
</div>
</div>*/}
<div className="appPageSection__withBorder">
<h2>{__('Allegati', 'gepafin')}</h2>

View File

@@ -1,5 +1,5 @@
import React, { useState, useEffect, useRef } from 'react';
import { __, sprintf } from '@wordpress/i18n';
import { __ } from '@wordpress/i18n';
import { useNavigate, useParams } from 'react-router-dom';
import { is, isEmpty, isNil } from 'ramda';
@@ -309,7 +309,7 @@ const BandoViewBeneficiario = () => {
</div>
</div>
<div className="appPageSection__withBorder">
{/*<div className="appPageSection__withBorder">
<h2>{__('Criteri di Valutazione', 'gepafin')}</h2>
<div className="row rowContent">
<ul>
@@ -318,7 +318,7 @@ const BandoViewBeneficiario = () => {
</li>)}
</ul>
</div>
</div>
</div>*/}
<div className="appPageSection__withBorder">
<h2>{__('Allegati', 'gepafin')}</h2>

View File

@@ -4,7 +4,7 @@ import { useNavigate } from 'react-router-dom';
import { pathOr } from 'ramda';
// store
import { storeSet } from '../../store';
//import { storeSet } from '../../store';
// api
import DashboardService from '../../service/dashboard-service';