code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/protocols/indexer/test/Indexer-unit.js b/protocols/indexer/test/Indexer-unit.js @@ -18,9 +18,12 @@ contract('Indexer Unit Tests', async accounts => { let nonOwner = accounts[1] let aliceAddress = accounts[2] let bobAddress = accounts[3] + let carolAddress = accounts[4] let aliceLocator = padAddressToLocato...
3
diff --git a/token-metadata/0xE6279E1c65DD41b30bA3760DCaC3CD8bbb4420D6/metadata.json b/token-metadata/0xE6279E1c65DD41b30bA3760DCaC3CD8bbb4420D6/metadata.json "symbol": "REB", "address": "0xE6279E1c65DD41b30bA3760DCaC3CD8bbb4420D6", "decimals": 9, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" }...
3
diff --git a/packages/app/src/stores/renderer.tsx b/packages/app/src/stores/renderer.tsx @@ -53,6 +53,9 @@ export const useViewOptions = (storeTocNodeHandler: (toc: HtmlElementNode) => vo return useSWRImmutable<RendererOptions, Error>( key, (rendererId, currentPagePath, rendererConfig) => generateViewOptions(currentPag...
12
diff --git a/packages/app/src/server/routes/apiv3/user-group.js b/packages/app/src/server/routes/apiv3/user-group.js @@ -42,7 +42,7 @@ module.exports = (crowi) => { } = crowi.models; validator.listChildren = [ - query('parentIds', 'parentIds must be an string').optional().isString(), + query('parentIdsJoinedByComma', '...
10
diff --git a/server/game/cards/02.4-TCT/GaijinCustoms.js b/server/game/cards/02.4-TCT/GaijinCustoms.js @@ -4,7 +4,7 @@ class GaijinCustoms extends DrawCard { setupCardAbilities() { this.action({ title: 'Ready a non-unicorn character', - condition: () => this.controller.findCard(this.controller.cardsInPlay, card => card...
13
diff --git a/frontend/lost/src/components/SIA/ToolBar.js b/frontend/lost/src/components/SIA/ToolBar.js @@ -162,17 +162,17 @@ class ToolBar extends Component{ renderFinishPrompt(){ return ( <Dimmer page active={this.state.showFinishPrompt}> - <Header as="h2" inverted> + <Header as="h3" inverted> <Icon name='paper plane ...
7
diff --git a/src/components/Modal.js b/src/components/Modal.js @@ -4,7 +4,7 @@ const React = require('react'); import { withTheme } from './Theme'; const Button = require('./Button'); const Icon = require('./Icon'); -const MXFocusTrap = require('../components/MXFocusTrap'); +const RestrictFocus = require('../components...
14
diff --git a/server/game/cards/01 - Core/KitsukiInvestigator.js b/server/game/cards/01 - Core/KitsukiInvestigator.js @@ -6,37 +6,20 @@ class KitsukiInvestigator extends DrawCard { title: 'Look at opponent\'s hand', condition: () => this.game.currentConflict && this.game.currentConflict.isParticipating(this) && this.gam...
2
diff --git a/src/api/nw_window_api.cc b/src/api/nw_window_api.cc @@ -352,7 +352,7 @@ NwCurrentWindowInternalCapturePageInternalFunction::Run() { if (image_details->format != api::extension_types::IMAGE_FORMAT_NONE) image_format_ = image_details->format; - if (image_details->quality.get()) + if (image_details->quality) ...
4
diff --git a/src/config/commandOptions.js b/src/config/commandOptions.js @@ -30,7 +30,8 @@ export default { }, disableScheduledEvents: { usage: - 'Disables all scheduled events. Overrides configurations in serverless.yml.', + 'Disables all scheduled events. Overrides configurations in serverless.yml. Default: false', +...
0
diff --git a/CHANGELOG.md b/CHANGELOG.md +# Upcoming Wekan release + +Known bugs: + +* https://github.com/wekan/wekan/issues/785 +* https://github.com/wekan/wekan/issues/784 + +This release fixes the following bug: + +* No need for Array.prototype if using rest operator + +Thanks to GitHub user vuxor for contributions....
1
diff --git a/angular/projects/spark-angular/src/lib/components/sprk-masthead/sprk-masthead.component.spec.ts b/angular/projects/spark-angular/src/lib/components/sprk-masthead/sprk-masthead.component.spec.ts @@ -448,21 +448,15 @@ class Test1Component { selector: 'sprk-test-2', template: ` <sprk-masthead> - <div - sprkMa...
3
diff --git a/packages/rmw-shell/cra-template-rmw/template/package.json b/packages/rmw-shell/cra-template-rmw/template/package.json "start": "react-scripts start", "standard": "standard src/**/*.js ", "build": "react-scripts build", - "test": "react-scripts test --env=jsdom", + "test": "react-scripts test --env=jsdom --...
3
diff --git a/circle.yml b/circle.yml @@ -1028,7 +1028,7 @@ jobs: PERCY_PARALLEL_TOTAL=-1 \ yarn percy exec -- \ yarn cypress:run --record --parallel --group 2x-desktop-gui \ - yarn cypress:run:ct + && yarn cypress:run:ct working_directory: packages/desktop-gui - verify-mocha-results - store_test_results:
3
diff --git a/config/sidebar.yml b/config/sidebar.yml @@ -25,7 +25,7 @@ articles: url: /architecture-scenarios children: - - title: SDLC Implementation Checklists + - title: Implementation Checklists url: /architecture-scenarios/checklists - title: SSO for Regular Web Apps
2
diff --git a/src/web/App.mjs b/src/web/App.mjs @@ -403,7 +403,9 @@ class App { } /** + * Gets the URI params from the window and parses them to extract the actual values. * + * @returns {object} */ getURIParams() { // Load query string or hash from URI (depending on which is populated)
0
diff --git a/src/middleware/packages/notifications/services/digest/service.js b/src/middleware/packages/notifications/services/digest/service.js @@ -38,7 +38,7 @@ const DigestNotificationsService = { actions: { async build(ctx) { const { frequency, timestamp } = ctx.params; - const returnValues = []; + const success = ...
7
diff --git a/universe.js b/universe.js import * as THREE from './three.module.js'; +import {BufferGeometryUtils} from './BufferGeometryUtils.js'; import {rigManager} from './rig.js'; import {scene} from './app-object.js'; import {Sky} from './Sky.js'; import {world} from './world.js'; import {GuardianMesh} from './land...
0
diff --git a/tests/e2e/plugins/oauth-callback.php b/tests/e2e/plugins/oauth-callback.php @@ -30,15 +30,8 @@ add_action( $user_options = new User_Options( $context ); if ( filter_input( INPUT_GET, 'googlesitekit_connect', FILTER_VALIDATE_BOOLEAN ) ) { - $redirect_url = ''; - if ( ! empty( $_GET['redirect'] ) ) { - $redi...
11
diff --git a/ui/app/keychains/hd/recover-seed/confirmation.js b/ui/app/keychains/hd/recover-seed/confirmation.js @@ -4,12 +4,21 @@ const PropTypes = require('prop-types') const connect = require('react-redux').connect const h = require('react-hyperscript') const actions = require('../../../actions') +const { withRouter...
4
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -232,7 +232,7 @@ jobs: # differ between the macOS image and the Docker containers above. - run: name: pre-start simulator - command: xcrun simctl boot "iPhone 7 (10.3.1) [" || true + command: xcrun simctl boot "iPhone 7" || true - run: command: | brew update
4
diff --git a/src/commands/addons/list.js b/src/commands/addons/list.js @@ -18,20 +18,20 @@ class AddonsListCommand extends Command { const siteData = await api.getSite({ siteId }) const addons = await getAddons(siteId, accessToken) - if (!addons || !addons.length) { - this.log(`No addons currently installed for ${siteD...
3
diff --git a/components/post.js b/components/post.js @@ -390,6 +390,23 @@ function Post({title, published_at, feature_image, html, backLink}) { color: white; margin-bottom: 1em; } + + .kg-product-card { + display: flex; + align-items: center; + flex-direction: column; + width: 100%; + } + + .kg-product-card-container {...
0
diff --git a/packages/node_modules/@node-red/editor-client/src/vendor/monaco/style.css b/packages/node_modules/@node-red/editor-client/src/vendor/monaco/style.css @@ -14,3 +14,9 @@ This stylesheet overrides those to correct some graphical glitches color: unset; margin: unset; } + +/* unset some styles of `input` tag (s...
9
diff --git a/src/plots/cartesian/axes.js b/src/plots/cartesian/axes.js @@ -634,6 +634,7 @@ axes.calcTicks = function calcTicks(ax, opts) { var definedDelta; if(isPeriod && tickformat) { var noDtick = ax._dtickInit !== ax.dtick; + var prevDtick = ax.dtick; if( !(/%[fLQsSMX]/.test(tickformat)) // %f: microseconds as a de...
9
diff --git a/.travis.yml b/.travis.yml @@ -69,3 +69,7 @@ jobs: if: (branch = master OR tag IS present) AND type = push env: NAME=deploy script: node_modules/.bin/ember deploy production + + allow_failures: + - env: EMBER_TRY_SCENARIO=ember-beta + - env: EMBER_TRY_SCENARIO=ember-canary
11
diff --git a/token-metadata/0xd0Df3b1Cf729A29B7404c40D61C750008E631bA7/metadata.json b/token-metadata/0xd0Df3b1Cf729A29B7404c40D61C750008E631bA7/metadata.json "symbol": "RUG", "address": "0xd0Df3b1Cf729A29B7404c40D61C750008E631bA7", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/site/rabbit.ent b/site/rabbit.ent @@ -15,7 +15,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> -<!ENTITY version-java-client "4.0.1"> +<!ENTITY version-java-client "4.0.2"> <...
12
diff --git a/src/screens/HomeScreen/__snapshots__/Header.test.js.snap b/src/screens/HomeScreen/__snapshots__/Header.test.js.snap @@ -60,6 +60,7 @@ exports[`renders correctly 1`] = ` "backgroundColor": "#ffffff", "paddingHorizontal": 8, "paddingTop": 8, + "zIndex": 2, } } type="uber" @@ -71,11 +72,18 @@ exports[`renders...
3
diff --git a/src/feed/Page.js b/src/feed/Page.js @@ -58,7 +58,7 @@ class Page extends React.Component { handleTopicClose = () => this.props.history.push(this.props.match.url); render() { - const { auth, match } = this.props; + const { auth, match, location } = this.props; return ( <div> @@ -78,13 +78,13 @@ class Page e...
2
diff --git a/src/generators/tailwind.js b/src/generators/tailwind.js @@ -46,8 +46,7 @@ module.exports = { throw Error("Tailwind CSS was compiled to empty string.") } - // Temporary fix for Tailwind CSS escaped characters - return result.css.replace(/\\-/g, '-') + return result.css }) } catch (err) { @@ -71,8 +70,7 @@ m...
2
diff --git a/test/unit/docsify.test.js b/test/unit/docsify.test.js @@ -7,7 +7,8 @@ const handler = require('serve-handler'); const { expect } = require('chai'); const { initJSDOM } = require('../_helper'); -const docsifySite = 'http://127.0.0.1:3000'; +const port = 9753; +const docsifySite = 'http://127.0.0.1:' + port;...
4
diff --git a/examples/client_socks_proxy/client_socks_proxy.js b/examples/client_socks_proxy/client_socks_proxy.js @@ -15,7 +15,7 @@ const client = mc.createClient({ socks.createConnection({ proxy: { host: proxyHost, - port: proxyPort, + port: parseInt(proxyPort), type: 5 }, command: 'connect', @@ -33,7 +33,7 @@ const ...
1
diff --git a/README.md b/README.md -# Ng6PdfViewer +# ngx-extended-pdf-viewer -This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 6.0.0. +Bringing Mozilla's pdf.js to the Angular world. Well, not just displaying PDFs. If you only need the base functionality, I'll happily pass ...
7
diff --git a/src/components/select/editForm/Select.edit.data.js b/src/components/select/editForm/Select.edit.data.js @@ -65,7 +65,8 @@ export default [ input: true, key: 'data.json', label: 'Data Source Raw JSON', - tooltip: 'A raw JSON array to use as a data source.', + tooltip: 'A valid JSON array to use as a data so...
7
diff --git a/src/og/scene/Planet.js b/src/og/scene/Planet.js @@ -978,25 +978,6 @@ class Planet extends RenderNode { if (this._createdNodesCount > MAX_NODES && this._distBeforeMemClear > 10000.0) { this.memClear(); } - - this._collectRenderNodes(); - - // Here is the planet node dispatches a draw event before - // rende...
14
diff --git a/README.md b/README.md @@ -21,7 +21,7 @@ and install the latest yarn version for your system. ### 1. Clone the repo -:horse_racing: Run this command to clone the repo +:horse_racing: Run this command to clone the repo: `git clone https://github.com/nas5w/typeofnan-javascript-quizzes` @@ -29,7 +29,7 @@ and i...
1
diff --git a/client/src/components/client/credits.js b/client/src/components/client/credits.js @@ -195,7 +195,7 @@ class Credits extends Component { <li> <a download="Thorium.zip" - href="https://github.com/Thorium-Sim/thorium-kiosk/releases/download/v1.0.2/thorium-client-1.0.3-mac.zip" + href="https://github.com/Thori...
1
diff --git a/packages/spark-core/components/masthead.js b/packages/spark-core/components/masthead.js @@ -4,9 +4,9 @@ import { focusFirstEl } from '../utilities/elementState'; import { isEscPressed } from '../utilities/keypress'; import { hideDropDown, showDropDown } from './dropdown'; -const addClassOnScroll = (element...
3
diff --git a/package.json b/package.json { "name": "BitShares2-light", - "version": "2.0.181031-rc1", + "version": "2.0.181031-rc2", "description": "Advanced wallet interface for the BitShares financial blockchain.", "homepage": "https://github.com/bitshares/bitshares-ui", "author": "Sigve Kvalsvik <kvalsvik.crypto@gma...
6
diff --git a/boilerplate/app/index.html b/boilerplate/app/index.html </head> <body> <h3>Welcome to Embark!</h3> - <p>See the <a href="https://github.com/iurimatias/embark-framework/wiki">Wiki</a> to see what you can do with Embark!</p> + <p>See the <a href="http://embark.readthedocs.io/en/latest/index.html" target="_bl...
3
diff --git a/views/env-parts/i18next.es b/views/env-parts/i18next.es @@ -65,7 +65,7 @@ i18next.use(reactI18nextModule) }, saveMissing: window.dbg && window.dbg.isEnabled(), missingKeyHandler: function (lng, ns, key, fallbackValue) { - if (i18nFiles.map(i => path.basename(i)).includes(ns)) { + if (ns !== 'data' && i18nF...
8
diff --git a/src/server/bg_services/server_monitor.js b/src/server/bg_services/server_monitor.js @@ -30,10 +30,6 @@ function run() { status: "UNKNOWN", test_time: moment().unix() }, - remote_syslog_status: { - status: "UNKNOWN", - test_time: moment().unix() - } }; if (!system_store.is_finished_initial_load) { dbg.log0(...
2
diff --git a/modules/controller/rpc-controller.js b/modules/controller/rpc-controller.js @@ -653,10 +653,9 @@ class RpcController { let response; if (handlerData) { + const documentPath = this.fileService.getHandlerIdDocumentPath(handler_id); switch (req.params.operation) { case 'entities:search': - - const documentPat...
3
diff --git a/lib/bal/api.js b/lib/bal/api.js @@ -5,7 +5,7 @@ import HttpError from '../http-error' const {publicRuntimeConfig} = getConfig() -export const {BACKEND_URL} = publicRuntimeConfig +export const BACKEND_URL = publicRuntimeConfig.BACKEND_URL || 'https://adresse.data.gouv.fr/backend' async function _fetch(url, ...
0
diff --git a/tests/index.test.js b/tests/index.test.js @@ -60,9 +60,12 @@ module.exports = Object.assign( }, after: (browser, done) => { if (SLACK_TOKEN && browser.sessionId) { - return browser.waitForElementVisible('#e2e-request', ()=> { - return browser.getText('#e2e-error', error => { - return browser.getText('#e2e-...
9
diff --git a/lib/models.js b/lib/models.js @@ -51,7 +51,7 @@ export const parseDifference = (previousState, currentState) => { const actions = []; Object.values(difference).forEach((df) => { - let action = { tableName: df.path[0], depends: [df.path[0]] }; + let action = { tableName: df.path[0], depends: [df.path[0]], o...
1
diff --git a/musicgenerator/main.py b/musicgenerator/main.py @@ -6,8 +6,9 @@ from google.cloud import storage PROJECT = 'halite-2' - # move to key management soon, create a new key and disable the current one +AMPER_KEY = 'wLntjWsRjS3PpZZsIKvbLvIbWTEdLwVkQ7kznKi3DrU5Y4Ut7mKmxQnMjTpYomLm' + MUSIC_BUCKET = 'ampermusichal...
5
diff --git a/README.md b/README.md </h1> # electerm -[![GitHub version](https://badge.fury.io/gh/electerm%2Felecterm.svg)](https://badge.fury.io/gh/electerm%2Felecterm) +[![GitHub version](https://img.shields.io/github/tag/electerm/electerm.svg)](http://electerm.html5beta.com) [![Build Status](https://travis-ci.org/ele...
4
diff --git a/layouts/partials/fragments/list.html b/layouts/partials/fragments/list.html {{- end }} </div> {{- if $renderPagination -}} - {{- partial "helpers/pagination.html" (dict "paginator" .root.Paginator) -}} + {{- partial "helpers/pagination.html" (dict "paginator" .root.Paginator "page_scratch" .page_scratch) -...
0
diff --git a/shared/js/background/trackers.es6.js b/shared/js/background/trackers.es6.js @@ -38,8 +38,7 @@ function isTracker (urlToCheck, thisTab, request) { return checkFirstParty(embeddedTweets, currLocation, urlToCheck) } - const parsedUrl = tldjs.parse(urlToCheck) - const urlSplit = getSplitURL(parsedUrl) + const ...
3
diff --git a/src/offline/NetworkStatus.js b/src/offline/NetworkStatus.js @@ -94,10 +94,8 @@ const Service = class { }); // We catch every $.ajax request errors or (canceled request). - // @ts-ignore - const ajaxError = this.$document_['ajaxError']; - if (ajaxError) { + if (this.$document_.ajaxError) { /** * @param {any...
8
diff --git a/assets/src/libraries/Book.js b/assets/src/libraries/Book.js @@ -21,6 +21,7 @@ export default class Book extends Component { this._actionButtons = this._actionButtons.bind(this); this._borrow = this._borrow.bind(this); this._return = this._return.bind(this); + this.showDetail = this.showDetail.bind(this); }...
0
diff --git a/README.md b/README.md @@ -54,8 +54,8 @@ npm install jquery.tabulator --save ### CDNJS To access Tabulator directly from the CDNJS CDN servers, include the following two lines at the start of your project, instead of the localy hosted versions: ```html -<link href="https://cdnjs.cloudflare.com/ajax/libs/tab...
3
diff --git a/reddit-bot/bot.js b/reddit-bot/bot.js @@ -496,6 +496,7 @@ function dourl(url, post, options) { bigimage(url, { fill_object: true, force_page: true, + exclude_videos: true, //allow_thirdparty: true, filter: function(url) { if (!bigimage.is_internet_url(url)) @@ -617,6 +618,8 @@ const links = new NodeCache({...
12
diff --git a/src/components/UploadToS3Dialog/index.js b/src/components/UploadToS3Dialog/index.js @@ -65,7 +65,7 @@ export const UploadToS3Dialog = ({ open, onClose, onAddSamples }) => { loadS3Path() // eslint-disable-next-line }, [s3Path, listBuckets, listBucketItemsAt]) - if (!open) return + if (!open) return null ret...
12
diff --git a/runtime.js b/runtime.js @@ -409,6 +409,7 @@ const _loadGltf = async (file, {optimize = false, physics = false, physics_url = if (component) { const componentHandler = componentHandlers[component.type]; componentHandler.trigger(mesh, component, rigAux); + used = true; } } return used; @@ -420,6 +421,7 @@ co...
0
diff --git a/includes/Modules/PageSpeed_Insights.php b/includes/Modules/PageSpeed_Insights.php @@ -129,6 +129,7 @@ final class PageSpeed_Insights extends Module * Parses a response for the given datapoint. * * @since 1.0.0 + * @since n.e.x.t GET:pagespeed returns the full response, not just the lighthouse result. * * @...
2
diff --git a/packages/react-jsx-highcharts/src/utils/removeProvidedProps.js b/packages/react-jsx-highcharts/src/utils/removeProvidedProps.js import { mapValues } from 'lodash-es'; import { isPlainObject } from 'lodash-es'; -import { wrap } from 'lodash-es'; const FROM_HIGHCHARTS_PROVIDER = 'getHighcharts'; const FROM_C...
14
diff --git a/demos/bibliographie/leoUIexample.js b/demos/bibliographie/leoUIexample.js @@ -56,11 +56,6 @@ export default class LeoUIExample{ var g = ohm.grammar('Academic { \n Exp = \n AcademicQuery \n \n AcademicQuery = Attribute Comparator Value -- simple \n | ("And" | "Or") "(" AcademicQuery "," AcademicQuery ")" --...
7
diff --git a/package.json b/package.json "name": "eleventy", "version": "0.1.0", "description": "Transform a directory of templates into HTML.", - "license": "MIT", "main": "cmd.js", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + }, + "bin": { + "eleventy": "./cmd.js" + }, "scripts": { "default": "node cmd.js...
0
diff --git a/config/sidebar.yml b/config/sidebar.yml @@ -186,6 +186,21 @@ articles: - title: "Addons/Third-Party Applications" url: "/addons" + - title: "Support" + url: "/support" + children: + - title: "Support Matrix" + url: "/support/matrix" + + - title: "SLA" + url: "/support/sla" + + - title: "Tickets" + url: "/s...
0
diff --git a/src/encoded/static/components/home/card_definitions.js b/src/encoded/static/components/home/card_definitions.js @@ -273,7 +273,7 @@ export const CARDS_FOR_OTHER_DATA = { title: 'Single-cell experiments', help: 'Data generated by assays (such as scRNA-seq, snATAC-seq) that provide sequencing results for the...
0
diff --git a/src/components/drawing/index.js b/src/components/drawing/index.js @@ -1458,6 +1458,12 @@ function getMarkerStandoff(d, trace) { standoff = trace.marker.standoff || 0; } + if(!trace._geo && !trace._xA) { + // case of legends + return -standoff; + } + + return standoff; }
7
diff --git a/struts2-jquery-plugin/src/test/java/com/jgeppert/struts2/jquery/components/AbstractComponentBaseTest.java b/struts2-jquery-plugin/src/test/java/com/jgeppert/struts2/jquery/components/AbstractComponentBaseTest.java package com.jgeppert.struts2.jquery.components; -import org.apache.struts2.conversion.StrutsT...
12
diff --git a/lib/assets/core/javascripts/cartodb3/editor/style/style-view.js b/lib/assets/core/javascripts/cartodb3/editor/style/style-view.js @@ -92,8 +92,7 @@ module.exports = CoreView.extend({ if (!this._editorModel.isEditing()) { this._onboardingLauncher.launch({ geom: this._queryGeometryModel.get('simple_geom'), -...
6
diff --git a/lib/core/engine.js b/lib/core/engine.js @@ -180,12 +180,12 @@ class Engine { self.events.emit('code-generator-ready'); }); }; - const cargo = async.cargo((tasks, callback) => { - generateCode(tasks[tasks.length - 1].contractsManager); + const cargo = async.cargo((_tasks, callback) => { + generateCode(); se...
2
diff --git a/yarn.lock b/yarn.lock @@ -13605,6 +13605,20 @@ web3-utils@^1.3.0: underscore "1.9.1" utf8 "3.0.0" +web3-utils@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.3.1.tgz#9aa880dd8c9463fe5c099107889f86a085370c2e" + integrity sha512-9gPwFm8SXtIJuzdrZ37PRlalu40fufXxo+H...
3
diff --git a/1.0/resources/fields.md b/1.0/resources/fields.md @@ -339,10 +339,10 @@ use Laravel\Nova\Fields\Markdown; Markdown::make('Biography') ``` -By default, Markdown fields will not display their content when viewing a resource on its detail page. It will be hidden behind a "Show Content" link, that when clicked...
3
diff --git a/config/redirects.js b/config/redirects.js @@ -3649,10 +3649,6 @@ module.exports = [ from: ['/security/bulletins/cve-2020-15259','/security/cve-2020-15259'], to: '/security/security-bulletins/cve-2020-15259' }, - { - from: ['/security/bulletins/cve-2020-15240','security/cve-2020-15240'], - to: 'security/sec...
2
diff --git a/blocks/parameters.js b/blocks/parameters.js @@ -21,7 +21,6 @@ Blockly.Blocks['args_create_with_item'] = { .appendField('x'); this.setPreviousStatement(true); this.setNextStatement(true); - this.setTooltip(Blockly.Msg['LISTS_CREATE_WITH_ITEM_TOOLTIP']); this.contextMenu = false; } }; @@ -36,7 +35,6 @@ Block...
2
diff --git a/src/components/NavigationDesktop/NavigationItemDesktop.js b/src/components/NavigationDesktop/NavigationItemDesktop.js @@ -36,10 +36,7 @@ const styles = (theme) => ({ fontSize: "12px" }, primaryNavItem: { - "textTransform": "capitalize", - "&:first-child": { - paddingLeft: "16px" - } + textTransform: "capit...
2
diff --git a/packages/bitcore-client/bin/wallet b/packages/bitcore-client/bin/wallet @@ -10,7 +10,7 @@ program .command('register', 'register a wallet with bitcore-node').alias('r') .command('balance', 'check wallet balance').alias('b') .command('utxos', 'get wallet utxos').alias('u') - .command('broadcast', 'get walle...
3
diff --git a/src/bot.js b/src/bot.js @@ -282,7 +282,7 @@ class Genesis { status: 'online', afk: false, game: { - name: `@${this.client.user.username} help (${this.shardId + 1}/${this.shardCount})`, + name: `@${this.client.user.username} help`, url: 'https://warframe.com', }, });
2
diff --git a/package.json b/package.json "sql-template-strings": "^2.2.2", "uws": "^0.12.0", "warframe-location-query": "^0.0.3", - "warframe-nexus-query": "^0.1.0", + "warframe-nexus-query": "^0.1.1", "warframe-worldstate-parser": "^1.7.3" }, "devDependencies": {
3
diff --git a/.github/workflows/release-insiders.yml b/.github/workflows/release-insiders.yml @@ -23,18 +23,9 @@ jobs: with: node-version: ${{ matrix.node-version }} registry-url: 'https://registry.npmjs.org' - - - name: Use cached node_modules - id: cache - uses: actions/cache@v3 - with: - path: node_modules - key: nod...
4
diff --git a/src/path.js b/src/path.js @@ -261,13 +261,13 @@ export class Path extends Shape { * @name Two.Path#closed * @property {Boolean} - Determines whether a final line is drawn between the final point in the `vertices` array and the first point. */ - this._closed = !!closed; + this.closed = !!closed; /** * @name...
12
diff --git a/src/inner-slider.js b/src/inner-slider.js @@ -93,6 +93,12 @@ export var InnerSlider = createReactClass({ } }, componentDidUpdate: function () { + let images = document.querySelectorAll('.slick-slide img') + images.forEach(image => { + if (!image.onload) { + image.onload = () => this.update(this.props) + } ...
0
diff --git a/docs/src/pages/discover-more/showcase.md b/docs/src/pages/discover-more/showcase.md @@ -31,3 +31,6 @@ Want to add your app? Found an app that no longer works or no longer uses Materi web: https://myblog831213.herokuapp.com/ project: https://github.com/shady831213/myBlog +### 7. SlidesUp + SlidesUp is a pla...
0
diff --git a/lib/misc/paths.coffee b/lib/misc/paths.coffee @@ -17,17 +17,30 @@ module.exports = expandHome: (p) -> if p.startsWith '~' then p.replace '~', @home() else p - fullPath: (path) -> + fullPath: (p) -> new Promise (resolve, reject) -> - if fs.existsSync(path) then resolve(path) + if fs.existsSync(p) then resol...
11
diff --git a/apps/presentor/interface.html b/apps/presentor/interface.html for (let i = 0; i < jparts.length; i++) { addFormPPart(jparts[i]); } + addFormPPart(); // add empty element on startup } function load() { function onInit() { load(); - addFormPPart(); // add empty element on startup } // load from watch first. ...
1
diff --git a/Apps/Sandcastle/gallery/3D Tiles Next S2 Globe.html b/Apps/Sandcastle/gallery/3D Tiles Next S2 Globe.html // MAXAR OWT WFF 1.2 Base Globe var tileset = viewer.scene.primitives.add( new Cesium.Cesium3DTileset({ - url: Cesium.IonResource.fromAssetId(666330), + url: Cesium.IonResource.fromAssetId(691510), max...
3
diff --git a/src/components/OnlyUpdateWhenFocused.js b/src/components/OnlyUpdateWhenFocused.js @@ -17,6 +17,8 @@ type State = { isFocused: boolean }; +// This component stops children from updating when the given navigation +// is not inFocus (I.e. not in the state between willFocus and blurred) export class OnlyUpdate...
0
diff --git a/app/components/Account/AccountTreemap.jsx b/app/components/Account/AccountTreemap.jsx @@ -17,32 +17,25 @@ Heatmap(ReactHighcharts.Highcharts); class AccountTreemap extends React.Component { static propTypes = { - assets: ChainTypes.ChainAssetsList + assets: ChainTypes.ChainAssetsList, + preferredAsset: Cha...
7
diff --git a/articles/libraries/auth0js/v8/index.md b/articles/libraries/auth0js/v8/index.md @@ -94,7 +94,6 @@ The `authorize()` method can be used for logging in users via the [Hosted Login | `scope` | required | (String) The scopes which you want to request authorization for. These must be separated by a space. You c...
2
diff --git a/token-metadata/0x310DA5e1E61cD9d6ECed092F085941089267E71E/metadata.json b/token-metadata/0x310DA5e1E61cD9d6ECed092F085941089267E71E/metadata.json "symbol": "MNT", "address": "0x310DA5e1E61cD9d6ECed092F085941089267E71E", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/src/components/library-item/library-item.jsx b/src/components/library-item/library-item.jsx @@ -46,7 +46,7 @@ class LibraryItem extends React.PureComponent { </div> </div> ) : ( - <div + <Box className={styles.libraryItem} role="button" tabIndex="0" @@ -64,7 +64,7 @@ class LibraryItem extends React.PureCom...
13
diff --git a/packages/ve-table/src/body/index.jsx b/packages/ve-table/src/body/index.jsx @@ -548,8 +548,7 @@ export default { */ tdSizeChange({ key, width }) { const { colsWidths } = this; - // fix reRender by column resize - colsWidths.set(key, Math.floor(width)); + colsWidths.set(key, width); this.$emit(EMIT_EVENTS.B...
1
diff --git a/new-client/src/plugins/collector/components/CollectorForm.js b/new-client/src/plugins/collector/components/CollectorForm.js @@ -58,7 +58,7 @@ class CollectorForm extends Component { renderPlaceForm = () => { this.setState({ mode: "place", - displayPlace: true + displayPlace: false }); if (window.document.b...
12
diff --git a/lib/seriallist.js b/lib/seriallist.js @@ -20,6 +20,9 @@ class SerialList { .then((ports) => { this.adapter.log.debug('List of ports: ' + JSON.stringify(ports)); this.adapter.sendTo(obj.from, obj.command, ports, obj.callback); + }).catch((err) => { + this.adapter.log.error(`List of ports error: ${err}`); + ...
9
diff --git a/server/platforms/twitter_crimson_hexagon.py b/server/platforms/twitter_crimson_hexagon.py @@ -21,9 +21,9 @@ class TwitterCrimsonHexagonProvider(ContentProvider): def count(self, query: str, start_date: dt.datetime, end_date: dt.datetime, **kwargs) -> int: """ The number of tweets in the monitor. - :param q...
4
diff --git a/README.md b/README.md @@ -313,7 +313,7 @@ If you have a template you'd like to create [here's how](https://docs.github.com -your friendly administrator. -## Moving your existing website to a submodule +### Moving your existing website to a submodule If your website code lives in the pyladies repo already, ...
12
diff --git a/src/data/common-typos.yaml b/src/data/common-typos.yaml ## British vs American spellings # https://developers.google.com/style/spelling +- typo: anonymise(d|) + fix: anonymize$1 + british: True + - typo: analyse fix: analyze british: True fix: color british: True -- typo: customise(d|) - fix: customize$1 +...
7
diff --git a/articles/libraries/auth0js/v8/index.md b/articles/libraries/auth0js/v8/index.md @@ -98,7 +98,7 @@ The `authorize()` method can be used for logging in users via the [Hosted Login | `responseType` | optional | (String) It can be any space separated list of the values `code`, `token`, `id_token`. It defaults ...
0
diff --git a/rig-aux.js b/rig-aux.js import * as THREE from './three.module.js'; import runtime from './runtime.js'; import physicsManager from './physics-manager.js'; -/* import fx from './fx.js'; -const {effects = []} = component; -const effectInstances = effects.map(effect => { - const {type, position = [0, 0, 0], q...
2
diff --git a/data/brands/amenity/fuel.json b/data/brands/amenity/fuel.json }, { "displayName": "MRS", - "id": "mrs-7ae8e2", - "locationSet": {"include": ["ng"]}, + "id": "mrs-0edd09", + "locationSet": { + "include": ["bj", "cm", "gh", "ng", "tg"] + }, "tags": { "amenity": "fuel", "brand": "MRS",
7
diff --git a/app/shared/components/Global/Transaction/Modal.js b/app/shared/components/Global/Transaction/Modal.js @@ -48,6 +48,7 @@ class GlobalTransactionModal extends Component<Props> { icon, title, settings, + size, system } = this.props; let { @@ -80,6 +81,7 @@ class GlobalTransactionModal extends Component<Props>...
11
diff --git a/README.md b/README.md I like `short` README's so here we go :sunglasses: +## Coming soon... + +`base-shell` with basic react settup (routing, intl, async load, redux) +`material-ui-shell` expanded `base-shell` with Material-UI design and additional features like responsive menu, pwa features and some demo ...
3
diff --git a/server/controllers/api/channel/claims/getChannelClaims.js b/server/controllers/api/channel/claims/getChannelClaims.js @@ -5,7 +5,11 @@ const { returnPaginatedChannelClaims } = require('./channelPagination.js'); const getChannelClaims = async (channelName, channelShortId, page) => { const channelId = await ...
8
diff --git a/docs/docs.md b/docs/docs.md @@ -965,9 +965,6 @@ Make sure that the docker image you are using supports your app's meteor version ### Update Docker Some problems are caused by old versions of docker. Since mup 1.3, `mup setup` and `mup docker setup` will update Docker if it is older than 1.13. -### Increase...
7