Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4522 | Rev 4624 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 4522 Rev 4529
Línea 43... Línea 43...
43
                        accessibility={backendVars.accessibility}
43
                        accessibility={backendVars.accessibility}
44
                    />
44
                    />
45
                </div>
45
                </div>
46
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
46
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
47
                    <GroupActions {...backendVars} actionLinks={actionLinks} />
47
                    <GroupActions {...backendVars} actionLinks={actionLinks} />
-
 
48
                    {backendVars.withoutFeeds
-
 
49
                        ? <AboutGroup {...backendVars} />
48
                    <FeedSection
50
                        : <FeedSection
49
                        routeTimeline={backendVars.routeTimeline}
51
                            routeTimeline={backendVars.routeTimeline}
50
                        backendVars={{
52
                            backendVars={{
51
                            ...backendVars,
53
                                ...backendVars,
52
                            image: `/storage/type/group/code/${backendVars.groupId}/${backendVars.image ? `filename/${backendVars.image}` : ""}`
54
                                image: `/storage/type/group/code/${backendVars.groupId}/${backendVars.image ? `filename/${backendVars.image}` : ""}`
-
 
55
                            }}
53
                        }}
56
                        />
54
                    />
57
                    }
55
                </div>
58
                </div>
56
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
59
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
57
                    <Members groupId={backendVars.groupId} />
60
                    <Members groupId={backendVars.groupId} />
58
                    <AboutGroup {...backendVars} />
61
                    {!backendVars.withoutFeeds && <AboutGroup {...backendVars} />}
59
                </div>
62
                </div>
60
            </div>
63
            </div>
61
        </main>
64
        </main>
62
    )
65
    )
63
}
66
}