remove abusive log
This commit is contained in:
parent
7331f20423
commit
29c99334b2
@ -175,7 +175,7 @@ USE_TZ = True
|
||||
# Static files (CSS, JavaScript, Images)
|
||||
# https://docs.djangoproject.com/en/4.0/howto/static-files/
|
||||
|
||||
STATIC_URL = 'static/'
|
||||
STATIC_URL = '/static/'
|
||||
|
||||
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
|
||||
|
||||
|
@ -24,7 +24,7 @@ function CardComp({ step, setActive, deleted, tags, queryKey }) {
|
||||
{
|
||||
onSuccess: (data, variables, context) => {
|
||||
queryClient.setQueryData(queryKey, (old) => {
|
||||
console.log("test old", old);
|
||||
|
||||
return {
|
||||
...old,
|
||||
results: [
|
||||
@ -47,7 +47,7 @@ function CardComp({ step, setActive, deleted, tags, queryKey }) {
|
||||
setTagMode(false);
|
||||
},
|
||||
onError: (data) => {
|
||||
console.log("ERROR", data);
|
||||
|
||||
notificationService.error(
|
||||
"Erreur",
|
||||
`Les tags de ${step.name} n'ont pu être modifiés !`
|
||||
@ -68,7 +68,7 @@ function CardComp({ step, setActive, deleted, tags, queryKey }) {
|
||||
queryClient.invalidateQueries(queryKey);
|
||||
}
|
||||
queryClient.setQueriesData(queryKey, (old) => {
|
||||
console.log("test old", old);
|
||||
|
||||
return {
|
||||
...old,
|
||||
results: [
|
||||
@ -92,7 +92,7 @@ function CardComp({ step, setActive, deleted, tags, queryKey }) {
|
||||
setTagMode(false);
|
||||
},
|
||||
onError: (e) => {
|
||||
console.log(e);
|
||||
|
||||
notificationService.error(
|
||||
"Erreur",
|
||||
`Le tag n'a pu être retiré de ${step.name} !`
|
||||
|
@ -143,7 +143,7 @@ export default function ExoCreateForm({ cancel, resetFilter }) {
|
||||
type="checkbox"
|
||||
checked={newExo.private}
|
||||
onChange={(e) => {
|
||||
console.log(e.target);
|
||||
|
||||
setNewExo({ ...newExo, private: !newExo.private });
|
||||
}}
|
||||
/>
|
||||
|
@ -133,7 +133,7 @@ export function ExoEditForm({ step, cancel, setFull, full }) {
|
||||
type="checkbox"
|
||||
checked={spec.private}
|
||||
onChange={(e) => {
|
||||
console.log(e.target);
|
||||
|
||||
setSpec({ ...spec, private: !spec.private });
|
||||
}}
|
||||
/>
|
||||
|
@ -120,7 +120,7 @@ export default function ModalCard({ step, onClose, onDelete, tags, queryKey }) {
|
||||
return { ...old, tags: data.data.tags };
|
||||
});
|
||||
queryClient.setQueryData(queryKey, (old) => {
|
||||
console.log("test old", old);
|
||||
|
||||
return {
|
||||
...old,
|
||||
results: [
|
||||
|
@ -97,7 +97,7 @@ export function Pagination({ setPage, page, pages }) {
|
||||
: page + 3
|
||||
)
|
||||
.map((p) => {
|
||||
console.log("new pagin", p);
|
||||
|
||||
return (
|
||||
<p
|
||||
onClick={() => {
|
||||
|
@ -21,7 +21,7 @@ export default function StepOptions({ pageChange, serieChange }) {
|
||||
e.target.value == ''
|
||||
);
|
||||
if (!isNaN(parseInt(e.target.value, 10))) {
|
||||
console.log("nope");
|
||||
|
||||
if (parseInt(e.target.value, 10) > 100) {
|
||||
setPage(100);
|
||||
pageChange && pageChange(100);
|
||||
|
@ -72,7 +72,7 @@ export default function ModelInput({
|
||||
var filename = e.target.files[0].name;
|
||||
var splitting = filename.split(".");
|
||||
if (splitting[splitting.length - 1] != "py") {
|
||||
console.log("nope");
|
||||
|
||||
} else {
|
||||
setModel({ filename: e.target.files[0].name, data: text });
|
||||
}
|
||||
|
@ -9,7 +9,7 @@ export default function TagContainer({ tags }) {
|
||||
const [invisible, setInvisible] = useState([]);
|
||||
useLayoutEffect(() => {
|
||||
if (ref.current.clientWidth < ref.current.scrollWidth) {
|
||||
console.log("overflow", ref);
|
||||
|
||||
var element = ref.current;
|
||||
var invi = [];
|
||||
for (var i = 0; i < element.childElementCount; i++) {
|
||||
@ -24,7 +24,7 @@ export default function TagContainer({ tags }) {
|
||||
element.children[i].style.display = "none";
|
||||
}
|
||||
}
|
||||
console.log(invi);
|
||||
|
||||
setInvisible([...invi]);
|
||||
}
|
||||
}, [ref]);
|
||||
|
@ -229,7 +229,7 @@ export default function ParcoursView({ parcours_id, room_code, user }) {
|
||||
}, [parcours]);
|
||||
|
||||
const router = useRouter();
|
||||
console.log("PARCOURS", parcours);
|
||||
|
||||
const [dataCorrection, setDataCorrection] = useState();
|
||||
const [onglet, setOnglet] = useState("tab");
|
||||
|
||||
|
@ -24,11 +24,11 @@ export const WebsocketProvider = ({ children }) => {
|
||||
});
|
||||
};
|
||||
ws.current.onclose = (c) => {
|
||||
console.log("CLOSED", c);
|
||||
|
||||
setConnected(false);
|
||||
};
|
||||
ws.current.onerror = (e) => {
|
||||
console.log("ERROR", e);
|
||||
|
||||
|
||||
//router.push({ pathname: '/room/join' })
|
||||
ws.current.close();
|
||||
|
@ -29,7 +29,7 @@ export default function Login() {
|
||||
router.push({ pathname: "/dashboard" });
|
||||
})
|
||||
.catch((err) => {
|
||||
console.log(err.response.data);
|
||||
|
||||
setError({ ...err.response.data });
|
||||
});
|
||||
}}
|
||||
|
@ -39,7 +39,7 @@ export default function Register() {
|
||||
router.push({ pathname: "/dashboard" });
|
||||
})
|
||||
.catch((err) => {
|
||||
console.log(err.response.data);
|
||||
|
||||
setError({ ...err.response.data });
|
||||
});
|
||||
}}
|
||||
|
Loading…
Reference in New Issue
Block a user