code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/src/components/textbox/textbox.d.ts b/src/components/textbox/textbox.d.ts import * as React from 'react'; import { InputProps } from '../input-definition'; -export interface TextProps extends InputProps { +export interface TextboxProps extends InputProps { value?: string; } /** * A textbox widget. */ -decl...
10
diff --git a/package.json b/package.json "prismarine-physics": "^1.0.4", "prismarine-recipe": "^1.1.0", "prismarine-windows": "^2.2.0", - "prismarine-world": "^3.5.0", + "prismarine-world": "^3.6.0", "protodef": "^1.8.0", "typed-emitter": "^1.2.0", "vec3": "^0.1.6"
3
diff --git a/website/themes/uppy/layout/partials/frontpage-code-sample.html b/website/themes/uppy/layout/partials/frontpage-code-sample.html @@ -8,7 +8,7 @@ save it as a layout partial <span class="token keyword">import</span> Dashboard <span class="token keyword">from</span> <span class="token string">'@uppy/dashboard...
3
diff --git a/routes/forum/forumThreadCommentReplyRoutes.js b/routes/forum/forumThreadCommentReplyRoutes.js @@ -61,6 +61,10 @@ router.post("/:id/:commentId", middleware.isLoggedIn, async function (req, res) foundForumThread.markModified("comments"); //add 1 to the num of comments foundForumThread.numOfComments = foundFo...
1
diff --git a/js/plugin/TracksLoader.js b/js/plugin/TracksLoader.js @@ -2,7 +2,18 @@ BR.tracksLoader = function(map, layersControl, routing) { TracksLoader = L.Control.FileLayerLoad.extend({ options: { layer: L.geoJson, - layerOptions: { style: { color: 'blue' }, interactive: false }, + layerOptions: { + style: { color:...
12
diff --git a/ios/Podfile.lock b/ios/Podfile.lock PODS: - boost-for-react-native (1.63.0) - - Branch (0.31.3): - - Branch/Core (= 0.31.3) - - Branch/Core (0.31.3) + - Branch (0.35.0) - BVLinearGradient (2.5.6): - React - DoubleConversion (1.1.6) @@ -199,8 +197,8 @@ PODS: - React-jsinspector (0.61.5) - react-native-blur ...
1
diff --git a/core/api-server/api/graphql/schemas/job-schema.js b/core/api-server/api/graphql/schemas/job-schema.js @@ -73,7 +73,7 @@ type Batch { total: Int } - type Value { types: [String ] } + type Value { types: [String ] metrics: Object} type Edges { from: String to: String value: Value }
0
diff --git a/packages/node_modules/@node-red/nodes/locales/en-US/common/60-link.html b/packages/node_modules/@node-red/nodes/locales/en-US/common/60-link.html <p>If no response is received within the configured timeout, default 30 seconds, the node will log an error that can be caught using the <code>catch</code> node....
3
diff --git a/src/MUIDataTable.js b/src/MUIDataTable.js @@ -351,11 +351,6 @@ class MUIDataTable extends React.Component { let filterData = []; let filterList = []; - if (this.state.columns.length && isEqual(this.rawColumns(newColumns), this.rawColumns(this.props.columns))) { - const { columns, filterList, filterData } =...
11
diff --git a/src/gltf/user_camera.js b/src/gltf/user_camera.js @@ -12,7 +12,6 @@ class UserCamera extends gltfCamera constructor( position = [0, 0, 0], target = [0, 0,0], - up = [0, 1, 0], xRot = 0, yRot = 0, zoom = 1) @@ -21,7 +20,6 @@ class UserCamera extends gltfCamera this.position = jsToGl(position); this.target =...
2
diff --git a/README.md b/README.md @@ -986,19 +986,22 @@ algorithm. Transformation rules are specified in external files. ### Usage ```javascript -var natural = require("./lib/natural"); +var natural = require("natural"); +var path = require("path"); -var base_folder = "some_path/lib/natural/brill_pos_tagger"; -var rul...
1
diff --git a/.github/workflows/cherryPick.yml b/.github/workflows/cherryPick.yml @@ -8,8 +8,21 @@ on: required: true jobs: + validateActor: + runs-on: ubuntu-latest + outputs: + IS_DEPLOYER: ${{ steps.isUserDeployer.outputs.isTeamMember }} + steps: + - id: isUserDeployer + uses: tspascoal/get-user-teams-membership@baf2...
11
diff --git a/app/modules/main/containers/Sections/Tools/Home.js b/app/modules/main/containers/Sections/Tools/Home.js @@ -18,7 +18,7 @@ const toolSections = { path: 'tools/airgrabs' }, tools_menu_customtokens: { - modes: ['hot', 'ledger', 'watch'], + modes: ['all'], path: 'tools/custom_tokens' }, tools_menu_delegations:...
11
diff --git a/lime/utils/ObjectPool.hx b/lime/utils/ObjectPool.hx package lime.utils; +import haxe.ds.ObjectMap; + #if !lime_debug @:fileXml('tags="haxe,release"') @:noDebug #end -@:generic class ObjectPool<T:{}> { +@:generic class ObjectPool<T> { public var activeObjects (default, null):Int; @@ -41,7 +43,7 @@ package l...
11
diff --git a/index.js b/index.js @@ -111,11 +111,13 @@ const localFloat32Array3 = zeroMatrix.toArray(new Float32Array(16)); const localFloat32Array4 = new Float32Array(16); const localGamepadArray = new Float32Array(16); +const maxNumPlanes = 32 * 3; +const planeEntrySize = 3 + 4 + 2 + 1; const framebufferArray = new U...
9
diff --git a/modules/core/src/shaderlib/project/viewport-uniforms.js b/modules/core/src/shaderlib/project/viewport-uniforms.js @@ -221,7 +221,7 @@ function calculateViewportUniforms({ // When using Viewport class's default projection matrix, this yields 1 for orthographic // and `viewport.focalDistance` for perspective...
2
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -5,40 +5,12 @@ jobs: branches: ignore: - gh-pages - - master docker: - image: circleci/node:10 - - working_directory: ~/repo - - steps: - - checkout - - restore_cache: - keys: - - v1-dependencies-{{ checksum "package.json" }} - - v1-dependencies- - - run: npm ...
3
diff --git a/src/components/Plotter/Waffle.js b/src/components/Plotter/Waffle.js @@ -42,7 +42,9 @@ export const Waffle: ComponentType<*> = ({ data, layout, config, ...props }) => t: 20 }} style={{ - display: "inline-block" + display: "block", + margin: "auto auto", + 'max-width': 400 }} layout={ { hovermode: "x+y", @@ ...
7
diff --git a/common/stores/config-store.js b/common/stores/config-store.js @@ -35,6 +35,7 @@ store.dispatcherIndex = Dispatcher.register(store, (payload) => { bulletTrain.init({ environmentID: Project.bulletTrain, onChange: controller.loaded, + api: Project.api }); controller.store = store;
11
diff --git a/UserReviewBanHelper.user.js b/UserReviewBanHelper.user.js // @description Display users' prior review bans in review, Insert review ban button in user review ban history page, Load ban form for user if user ID passed via hash // @homepage https://github.com/samliew/SO-mod-userscripts // @author @samliew -/...
2
diff --git a/src/data/__test-data.js b/src/data/__test-data.js @@ -73,7 +73,7 @@ export const generateFeaturedEvents: ValueGenerator<FeaturedEvents> = gen({ locale: "en-GB", revision: 1, fields: gen({ - title: "title", + title: gen.alphaNumString.notEmpty(), events: gen.array(generateFieldRef, { minSize: 0, maxSize: 10...
3
diff --git a/package.json b/package.json { "name": "prettier-atom", "main": "./dist/main.js", - "version": "0.47.2", + "version": "0.48.0", "description": "Atom plugin for formatting JavaScript using prettier with (optional) prettier-eslint integration", "keywords": [ "atom",
6
diff --git a/site/jekylldocs/reference/index.md b/site/jekylldocs/reference/index.md @@ -23,7 +23,7 @@ Explore Reference: [Access Control Language]({{site.baseurl}}/reference/acl_language.html ) -[Connection Profile]({{site.baseurl}}reference/connectionprofile.html ) +[Connection Profile]({{site.baseurl}}/reference/con...
1
diff --git a/accessibility-checker-engine/help/style_hover_persistent.mdx b/accessibility-checker-engine/help/style_hover_persistent.mdx @@ -39,19 +39,16 @@ Note: Use of the `~` selector with the `display` style attribute can allow many The recommended code example is: <CodeSnippet type="multi" light={true}> -&lt;head&...
4
diff --git a/source/supported-token-registry/contracts/SupportedTokenRegistry.sol b/source/supported-token-registry/contracts/SupportedTokenRegistry.sol @@ -32,12 +32,12 @@ contract SupportedTokenRegistry is Ownable { function addTokens(address[] calldata tokenList) external { uint256 transferAmount = 0; if (supportedT...
3
diff --git a/metaverse_modules/barrier/index.js b/metaverse_modules/barrier/index.js @@ -589,6 +589,8 @@ export default () => { const penetrationNormalVector = clipPlane.getPenetrationNormalVector(localLine, localVector); if (penetrationNormalVector !== null) { if (!animationSpec) { + const direction = penetrationNorma...
0
diff --git a/dev/madge.js b/dev/madge.js @@ -281,26 +281,36 @@ const getIndex = () => `\ - +async function exec() +{ try { if(!fs.existsSync("./dev/madge")) fs.mkdirSync("./dev/madge"); - generateForOther().then(() => { - generateForSrc().then(() => { - generateForEndpoints().then(() => { - generateForTools().then(() =...
7
diff --git a/userscript.user.js b/userscript.user.js @@ -8285,7 +8285,7 @@ var $$IMU_EXPORT$$; } if ((domain === "pbs.twimg.com" && - src.indexOf("pbs.twimg.com/media/") >= 0) || + /:\/\/[^/]+\/+(?:media|card_img|ext_tw_video_thumb)\//.test(src)) || (domain === "ton.twitter.com" && src.indexOf("/ton/data/dm/") >= 0)) {...
7
diff --git a/userscript.user.js b/userscript.user.js @@ -44764,6 +44764,14 @@ var $$IMU_EXPORT$$; } } + if (domain === "ca.slack-edge.com") { + // thanks to TheLastZombie on Github: https://github.com/qsniyg/maxurl/pull/162 + // https://ca.slack-edge.com/T81EQ2QNM-UDEDDF8AV-c0aac75e8652-72 + // https://ca.slack-edge.co...
7
diff --git a/lib/AmdMainTemplatePlugin.js b/lib/AmdMainTemplatePlugin.js @@ -17,7 +17,7 @@ class AmdMainTemplatePlugin { const mainTemplate = compilation.mainTemplate; compilation.templatesPlugin("render-with-entry", (source, chunk, hash) => { - const externals = chunk.modules.filter((m) => m.external); + const externa...
2
diff --git a/articles/appliance/extensions.md b/articles/appliance/extensions.md @@ -24,9 +24,6 @@ In order for you to configure Extensions, you will need to add this URL to the * At this point, you can enable any of the available Extensions [in the dashboard](${manage_url}/#/extensions) and use them just as you would ...
3
diff --git a/packages/vulcan-core/test/components.test.js b/packages/vulcan-core/test/components.test.js @@ -7,7 +7,7 @@ import { initComponentTest } from 'meteor/vulcan:test'; // we must import all the other components, so that "registerComponent" is called import '../lib/modules'; -import Datatable from '../lib/modul...
1
diff --git a/src/print/Service.js b/src/print/Service.js @@ -336,6 +336,11 @@ PrintService.prototype.encodeWmsLayer_ = function (arr, layer, url, params) { serverType = params.SERVERTYPE; } + // Get the same amount of styles than layers to print + while (params.LAYERS.split(',').length > params.STYLES.split(',').length...
12
diff --git a/app/shared/components/ColdWallet/Wallet/Transaction.js b/app/shared/components/ColdWallet/Wallet/Transaction.js // @flow import React, { Component } from 'react'; import { translate } from 'react-i18next'; -import { get, set } from 'dot-prop-immutable'; +import { get } from 'dot-prop-immutable'; import { B...
5
diff --git a/metaverse_modules/default-scene/index.js b/metaverse_modules/default-scene/index.js @@ -77,7 +77,7 @@ export default e => { // const {WebaverseShaderMaterial} = useMaterials(); const {voxelWorldSize} = procGen; - const coords = app.getComponent('coords'); + const coords = app.getComponent('coords') ?? [0, ...
0
diff --git a/sirepo/package_data/static/json/srw-schema.json b/sirepo/package_data/static/json/srw-schema.json ], "IntensityPlotsScale": [ ["linear", "Linear"], + ["log10", "Base-10 Logarithm"], ["log", "Natural Logarithm"], - ["log2", "Base-2 Logarithm"], - ["log10", "Base-10 Logarithm"] + ["log2", "Base-2 Logarithm"]...
7
diff --git a/src/lib/undux/effects/profile.js b/src/lib/undux/effects/profile.js @@ -8,7 +8,7 @@ const withProfile: Effects<State> = (store: Store) => { if (!isLoggedIn) return userStorage.subscribeProfileUpdates(profile => { - userStorage.getDisplayProfile(profile).then(store.set('profile')) + if (profile) userStorage...
0
diff --git a/articles/api-auth/tutorials/adoption/single-sign-on.md b/articles/api-auth/tutorials/adoption/single-sign-on.md @@ -4,6 +4,8 @@ title: OIDC Single sign-on # Single sign-on +<%= include('./_about.md') %> + Single sign-on (SSO) occurs when a user logs in to one client and is then signed in to other clients a...
0
diff --git a/src/tests/controllers/messageLength.test.ts b/src/tests/controllers/messageLength.test.ts import test, { ExecutionContext } from 'ava' +import * as rsa from '../../crypto/rsa' import { randomText, iterate, sleep } from '../utils/helpers' import { addContact } from '../utils/save' import { deleteContact, de...
3
diff --git a/assets/js/modules/analytics-4/components/common/PropertySelect.test.js b/assets/js/modules/analytics-4/components/common/PropertySelect.test.js @@ -25,7 +25,7 @@ import { STORE_NAME } from '../../datastore/constants'; import { CORE_SITE } from '../../../../googlesitekit/datastore/site/constants'; import * ...
2
diff --git a/spec/services/carto/federated_tables_service_spec.rb b/spec/services/carto/federated_tables_service_spec.rb @@ -331,7 +331,7 @@ describe Carto::FederatedTablesService do :remote_table_name => @remote_table_name, :id_column_name=> "id", :geom_column_name=>"geom", - :webmercator_column_name=> nil, + :webmerc...
1
diff --git a/core/pipeline-driver/.travis.yml b/core/pipeline-driver/.travis.yml @@ -9,6 +9,7 @@ branches: only: - master before_install: +- docker run -d -p 9000:9000 --name minio1 -e "MINIO_ACCESS_KEY=AKIAIOSFODNN7EXAMPLE" -e "MINIO_SECRET_KEY=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" minio/minio server /data - docke...
0
diff --git a/src/components/AvatarCropModal/AvatarCropModal.js b/src/components/AvatarCropModal/AvatarCropModal.js @@ -315,7 +315,7 @@ const AvatarCropModal = (props) => { translateX={translateX} rotation={rotation} /> - <View style={[styles.mt5, styles.justifyContentBetween, styles.alignItemsCenter, styles.flexRow, St...
12
diff --git a/packages/app/src/client/util/apiv1-client.ts b/packages/app/src/client/util/apiv1-client.ts @@ -30,7 +30,7 @@ class Apiv1ErrorHandler extends Error { } -export async function apiRequest(method: string, path: string, params: unknown): Promise<unknown> { +export async function apiRequest<T>(method: string, p...
12
diff --git a/test/react/server_rendering/webpacker_manifest_container_test.rb b/test/react/server_rendering/webpacker_manifest_container_test.rb @@ -25,7 +25,7 @@ WebpackerHelpers.when_webpacker_available do end detected_dev_server = false - 20.times do |i| + 60.times do |i| begin # Make sure that the manifest has been...
7
diff --git a/src/apps.json b/src/apps.json "4" ], "env": "^DOCUMENTATION_OPTIONS$", - "html": "Created using <a href=\"https?://sphinx-doc\\.org/\">Sphinx</a> ([.\\d+])+\\.\\;version:\\1", + "html": "Created using <a href=\"https?://sphinx-doc\\.org/\">Sphinx</a> ([.\\d+]+)\\.\\;version:\\1", "icon": "Sphinx.png", "imp...
1
diff --git a/articles/quickstart/native/ios-swift/04-calling-apis.md b/articles/quickstart/native/ios-swift/04-calling-apis.md @@ -19,6 +19,10 @@ Auth0 provides a set of tools for protecting your resources with end-to-end auth This tutorial shows you how to get an access token, attach it to a request with an authorizat...
5
diff --git a/ui/src/mixins/prevent-scroll.js b/ui/src/mixins/prevent-scroll.js @@ -71,11 +71,15 @@ function prevent (register) { const body = document.body if (register === true) { + const overflowY = window.getComputedStyle(body).overflowY + scrollPosition = getScrollPosition(window) bodyTop = body.style.top body.styl...
7
diff --git a/token-metadata/0x3B78dc5736a49BD297Dd2E4d62daA83D35A22749/metadata.json b/token-metadata/0x3B78dc5736a49BD297Dd2E4d62daA83D35A22749/metadata.json "symbol": "FNSP", "address": "0x3B78dc5736a49BD297Dd2E4d62daA83D35A22749", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/docs/content/widgets/Lists.js b/docs/content/widgets/Lists.js -import {HtmlElement, Text, List, MsgBox} from 'cx/widgets'; +import {HtmlElement, Text, List, MsgBox, Content, Tab} from 'cx/widgets'; import {Controller, PropertySelection} from 'cx/ui'; import {Md} from '../../components/Md'; import {CodeSpli...
0
diff --git a/src/utils/wallet.js b/src/utils/wallet.js @@ -230,7 +230,7 @@ class Wallet { return { ...state, - has2fa: account.has2fa, + has2fa: !!account.has2fa, balance: { available: '' },
12
diff --git a/activities/TankOp.activity/css/styles.css b/activities/TankOp.activity/css/styles.css } .credit-button { + cursor: pointer; position: absolute; top: 20%; right: 5%; } .start-button { + cursor: pointer; position: relative; margin-left: auto; margin-right: auto; } .go-left { + cursor: pointer; background-ima...
7
diff --git a/packages/babel-plugin-transform-cx-jsx/index.js b/packages/babel-plugin-transform-cx-jsx/index.js @@ -254,7 +254,7 @@ module.exports = function(options) { }; -export function innerTextTrim(str) { +function innerTextTrim(str) { str = str.replace(/\t/g, ''); str = str.replace(/(\s*[\r\n]\s*)/g, ''); return s...
2
diff --git a/website/sidebars.json b/website/sidebars.json "contribution/contribution-overview" ], "Contributing": [ - "contribution/nearcore", - "contribution/github" + "contribution/technical-contribution", + "contribution/nearcore" ], "FAQ": [ - "contribution/contribution-faq", - "contribution/technical-contribution...
7
diff --git a/app/features/selectable.js b/app/features/selectable.js @@ -385,7 +385,7 @@ export function Selectable(visbug) { const selection = () => selected - const unselect_all = ({silent = false}) => { + const unselect_all = ({silent = false} = {}) => { selected .forEach(el => $(el).attr({
12
diff --git a/bot/src/start.js b/bot/src/start.js @@ -24,6 +24,11 @@ function createLogger() { if (hasGCloudKey) { const consoleLogger = new ConsoleLogger(); const stackDriverLogger = new StackdriverBunyan({ keyFilename: GCLOUD_KEY_PATH }); + + stackDriverLogger.on('error', (err) => { + consoleLogger.warn({ event: 'BUNY...
9
diff --git a/assets/js/components/dashboard-sharing/DashboardSharingSettings/Module.js b/assets/js/components/dashboard-sharing/DashboardSharingSettings/Module.js @@ -46,10 +46,7 @@ import useViewContext from '../../../hooks/useViewContext'; import { CORE_MODULES } from '../../../googlesitekit/modules/datastore/constan...
2
diff --git a/js/kiri.js b/js/kiri.js @@ -1083,7 +1083,7 @@ self.kiri.license = exports.LICENSE; } else if (xhtr.status === 401) { $('gpapik').style.display = ''; } else { - alert("invalid grid-print host"); + console.log("invalid grid-print host"); } } };
2
diff --git a/app/templates/client/vue2/dev/todo/components/todo-cmp.js b/app/templates/client/vue2/dev/todo/components/todo-cmp.js <input type="text" v-model="todoForm.todo.todoMessage" - [class.todo-error]="!todoForm.todo.todoMessage" + v-bind:class="{'todo-error': !todoForm.todo.todoMessage}" placeholder="What do you...
3
diff --git a/src/partials/page-faq.html b/src/partials/page-faq.html {{#if page-contents}} - <main class="main text-center"> +<div class="text-center"> <div class="container-fluid pt-5 pb-5"> <h1 class="headline headline-heavy pb-3" id="top">{{page-contents.section-main.headline.title}}</h1> <div class="d-flex justify-...
14
diff --git a/_projects/Metafluidics/Metafluidics.md b/_projects/Metafluidics/Metafluidics.md @@ -13,5 +13,5 @@ tags: --- ##About -<p>Metafluidics was built to provide a home for digital design files and all of the other information necessary to reproduce or remix a microfluidic device.</p> +Metafluidics was built to pr...
2
diff --git a/source/lib/canvas-ribbon/canvas-ribbon.js b/source/lib/canvas-ribbon/canvas-ribbon.js * Created by zproo on 2017/4/3. */ ! function() { + document.addEventListener("touchstart", (e) => { + targetA = true; + }); + document.addEventListener("touchmove", (e) => { + targetA = false + }) + document.addEventList...
7
diff --git a/index.js b/index.js @@ -71,12 +71,17 @@ module.exports = function (_db, opts, keys, path) { unbox = key.unbox key = key.id } + console.log(key, ref.isMsg(key), ref.isMsgLink(key)) if(ref.isMsg(key)) return db.keys.get(key, function (err, data) { if(isPrivate && unbox) data = db.unbox(data, unbox) if(err) c...
11
diff --git a/storage.js b/storage.js import localforage from './localforage.js'; +const tempStorage = {}; + const storage = { async get(k) { const s = await localforage.getItem(k); @@ -20,5 +22,11 @@ const storage = { async keys() { return await localforage.keys(); }, + async getRawTemp(k) { + return tempStorage[k]; + ...
0
diff --git a/lib/api-geo.js b/lib/api-geo.js @@ -56,3 +56,9 @@ export function getCommune(codeCommune, fields) { return _fetch(url) } + +export function getByCode({postalCode}) { + const url = `${API_GEO_URL}/communes?codePostal=${postalCode}` + + return _fetch(url) +}
0
diff --git a/lib/mnemonic.js b/lib/mnemonic.js @@ -50,6 +50,7 @@ var Mnemonic = function(data, wordlist) { var ent, phrase, seed; if (Buffer.isBuffer(data)) { seed = data; + ent = seed.length * 8; } else if (_.isString(data)) { phrase = unorm.nfkd(data); } else if (_.isNumber(data)) { @@ -76,8 +77,8 @@ var Mnemonic = f...
12
diff --git a/articles/support/index.md b/articles/support/index.md @@ -3,7 +3,6 @@ url: /support toc: true description: Explains the different types of support options provided by Auth0. --- - # Support Options ## Support Options Overview @@ -13,7 +12,7 @@ Auth0 offers the following support plans: <table class="table">...
14
diff --git a/src/Player.js b/src/Player.js @@ -108,7 +108,8 @@ class Player extends Character { this.equipment = new Map(); for (const slot in eqDefs) { const itemDef = eqDefs[slot]; - let newItem = state.ItemFactory.create(state.AreaManager.getArea(itemDef.area), itemDef); + let newItem = state.ItemFactory.create(stat...
1
diff --git a/src/components/profile/EditProfile.web.js b/src/components/profile/EditProfile.web.js @@ -14,6 +14,7 @@ const EditProfile = props => { const [profile, setProfile] = useState(store.get('profile')) const [saving, setSaving] = useState() + const [isValid, setIsValid] = useState() const [errors, setErrors] = u...
0
diff --git a/sirepo/server.py b/sirepo/server.py @@ -53,7 +53,7 @@ _RUN_STATES = ('pending', 'running') _SESSION_KEY_USER = 'uid' #: Parsing errors from subprocess -_SUBPROCESS_ERROR_RE = re.compile(r'(?:warning|exception|error): ([^\n]+)', flags=re.IGNORECASE) +_SUBPROCESS_ERROR_RE = re.compile(r'(?:warning|exception|...
8
diff --git a/readme.md b/readme.md - [Path Easing](http://mojs.io/tutorials/easing/path-easing/) - [Icon Animations Powered by mo.js](http://tympanus.net/codrops/2016/02/23/icon-animations-powered-by-mo-js/) - [An Introduction to mo.js, by Sarah Drasner](https://css-tricks.com/introduction-mo-js/) + - [Web Animations a...
0
diff --git a/binding.gyp b/binding.gyp '<(module_root_dir)/deps/openvr/include', ], 'library_dirs': [ - '<(module_root_dir)/node_modules/native-graphics-deps/windows/lib/x64', + '<(module_root_dir)/node_modules/native-graphics-deps/lib/windows/glew', + '<(module_root_dir)/node_modules/native-graphics-deps/lib/windows/g...
4
diff --git a/rule-server/src/static/archives.json b/rule-server/src/static/archives.json { "id": "21September2022", "name": "21 September 2022 Deployment", - "version": "3.1.39", + "version": "3.1.38", "path": "/archives/2022.09.21" }, {
3
diff --git a/packages/gatsby/lib/schema/__tests__/infer-graphql-type-test.js b/packages/gatsby/lib/schema/__tests__/infer-graphql-type-test.js @@ -16,7 +16,7 @@ test(`Infers graphql type from array of nodes`, () => { anArray: [1, 2, 3, 4], anObjectArray: [ { aString: `some string`, aNumber: 2, aBoolean: true }, - { aSt...
9
diff --git a/src/components/TextLink.js b/src/components/TextLink.js @@ -33,8 +33,19 @@ const defaultProps = { const TextLink = (props) => { const additionalStyles = _.isArray(props.style) ? props.style : [props.style]; - const handlePress = (e) => { - e.preventDefault(); + /** + * Checking Function on open TextLink id...
10
diff --git a/app/src/store.js b/app/src/store.js @@ -75,7 +75,7 @@ if (process.env.REACT_APP_DEBUG === '*' || process.env.NODE_ENV !== 'production' predicate : (getState, action) => !(action.type === 'SET_PEER_VOLUME'), duration : true, timestamp : false, - level : 'log', + level : 'info', logErrors : true });
12
diff --git a/contributors.json b/contributors.json "country": "India", "name": "Omkar Geedh" }, + "oshadeegangangana": { + "country": "Sri Lanka", + "linkedin": "https://www.linkedin.com/in/oshadeegangangana/", + "name": "Oshadee Gangangana" + }, "oshka": { "country": "Ukraine", "name": "oshka"
3
diff --git a/package.json b/package.json "node": ">=10" }, "dependencies": { - "zigbee-herdsman": "^0.13.92", - "zigbee-herdsman-converters": "14.0.134", + "zigbee-herdsman": "0.13.102", + "zigbee-herdsman-converters": "14.0.149", "@iobroker/adapter-core": "^2.4.0", "tar": "^6.0.5", "typescript": "^4.0.5"
3
diff --git a/engine/modules/endscreen/src/main/resources/view/endscreen-module/EndScreenModule.js b/engine/modules/endscreen/src/main/resources/view/endscreen-module/EndScreenModule.js @@ -183,7 +183,7 @@ export class EndScreenModule { var name = this.generateText(finisher.player.name.toUpperCase(), 50, 'left', finishe...
1
diff --git a/articles/hosted-pages/login/index.md b/articles/hosted-pages/login/index.md @@ -16,11 +16,7 @@ If you cannot use universal login, you can embed the Lock widget or a custom log ### How Does Universal Login Work -Auth0 shows the login page whenever something (or someone) triggers an authentication request, s...
2
diff --git a/angular/projects/spark-angular/schematics/README.md b/angular/projects/spark-angular/schematics/README.md @@ -4,7 +4,7 @@ This is where we configure Angular CLI Schematics for Spark Design System. ## Utilize Schematics -Schematics are a feature of the Angular CLI. First, you should have the CLI installed g...
7
diff --git a/app/stylus/components/Room.styl b/app/stylus/components/Room.styl } +desktop() { - bottom: 20px; + top: 20px; left: 20px; border: 1px solid rgba(#fff, 0.15); } +mobile() { - bottom: 10px; + top: 10px; left: 10px; border: 1px solid rgba(#fff, 0.25); }
5
diff --git a/src/modules/app/services/DefaultSettings.js b/src/modules/app/services/DefaultSettings.js price: WavesApp.defaultAssets.BTC }, createOrder: { - expirationName: '30day' + expirationName: '5min' }, watchlist: { showOnlyFavorite: false,
12
diff --git a/app_web/index.html b/app_web/index.html @@ -318,12 +318,12 @@ function getUrlParam(parameter, defaultvalue){ <button v-stream:click="cameraExport$" type="button" class="button is-rounded"><i class="fa fa-download downloadIcon"></i>Download as .gltf</button> </b-field> <b-field label="Disable extensions" cl...
10
diff --git a/src/parsers/linter/GmlLinterKind.hx b/src/parsers/linter/GmlLinterKind.hx @@ -209,7 +209,7 @@ enum abstract GmlLinterKind(Int) { public inline function canSet() return __canSet[this]; static var __isStat = new GmlLinterKindSet([ - KSet, KCall, KInc, KDec, KFunction, + KSet, KCall, KInc, KDec, KFunction, KN...
11
diff --git a/track_types.rst b/track_types.rst @@ -196,9 +196,6 @@ Stacked Bars .. image:: img/horizontal-stacked-bar-scaled-thumb.png :align: right -.. image:: img/horizontal-stacked-bar-unscaled-thumb.png - :align: right - track-type: ``horizontal-stacked-bar`` datatype: ``multivec``
2
diff --git a/src/encoded/schemas/donor.json b/src/encoded/schemas/donor.json "organism.scientific_name": { "title": "Organism" }, - "sex": { - "title": "Sex" - }, "status": { "title": "Donor status" },
2
diff --git a/gridsome/lib/commands/utils/createRenderFn.js b/gridsome/lib/commands/utils/createRenderFn.js +const chalk = require('chalk') const { createHTMLRenderer } = require('../../utils/html') const { createBundleRenderer } = require('vue-server-renderer') @@ -18,23 +19,29 @@ module.exports = function createRender...
1
diff --git a/assets/js/modules/analytics/dashboard/dashboard-widget-popular-pages-table.js b/assets/js/modules/analytics/dashboard/dashboard-widget-popular-pages-table.js @@ -61,7 +61,7 @@ class AnalyticsDashboardWidgetPopularPagesTable extends Component { render() { const { data } = this.props; - const { siteURL: site...
2
diff --git a/lib/node_modules/@stdlib/repl/lib/process_line.js b/lib/node_modules/@stdlib/repl/lib/process_line.js @@ -37,6 +37,7 @@ var compileCommand = require( './compile_command.js' ); var debug = logger( 'repl:line' ); var hasMultilineError = Parser.extend( multilinePlugin ).hasMultilineError; var RE_WHITESPACE = ...
9
diff --git a/src/server/routes/authclient.js b/src/server/routes/authclient.js @@ -26,13 +26,7 @@ router.get("/", async (req, res) => { if (!BannedList.includes(user.id)) { Cache.Users.findOne({ id: user.id }).then(async (result) => { if (!result) { - /* - tempdis = user.discriminator; - dis = ""; - while (3 - dis.leng...
4
diff --git a/generators/server/templates/src/main/java/package/repository/_CustomAuditEventRepository.java b/generators/server/templates/src/main/java/package/repository/_CustomAuditEventRepository.java @@ -28,9 +28,6 @@ import org.springframework.stereotype.Repository; import org.springframework.transaction.annotation...
2
diff --git a/assets/js/modules/analytics/dashboard/dashboard-widget-top-level.js b/assets/js/modules/analytics/dashboard/dashboard-widget-top-level.js @@ -167,16 +167,16 @@ class AnalyticsDashboardWidgetTopLevel extends Component { totalUsersChange = '', goalCompletions = '', goalCompletionsChange = '', - averageSessio...
14
diff --git a/content/questions/event-scheduling/index.md b/content/questions/event-scheduling/index.md @@ -31,4 +31,4 @@ In what order will the numbers 1-4 be logged to the console when the code below <!-- explanation --> `1` and `4` are displayed first since they are logged by simple calls to `console.log()` without a...
0
diff --git a/contracts/governance/Staking.sol b/contracts/governance/Staking.sol @@ -18,7 +18,7 @@ contract Staking is Ownable{ mapping (address => uint96) internal balances; /// @notice A record of the unlocking timestamps per address - mapping (address => uint) public lockedUntil; + mapping (address => uint) public s...
10
diff --git a/src/components/shapes/draw.js b/src/components/shapes/draw.js @@ -155,12 +155,13 @@ function drawOne(gd, index) { ) ? 'stroke' : 'all' ); - path.node().addEventListener('click', function() { return clickFn(path); }); } + + path.node().addEventListener('click', function() { return clickFn(path); }); } funct...
9
diff --git a/docs/content/examples/grid/StatefulTreeGrid.js b/docs/content/examples/grid/StatefulTreeGrid.js @@ -226,6 +226,7 @@ export const StatefulTreeGrid = ( $leaf: leaf, }; } + function waitFor(time) { return new Promise((resolve, reject) => { setTimeout(() => { @@ -234,7 +235,6 @@ export const StatefulTreeGrid =...
3
diff --git a/gulp/jsdoc.js b/gulp/jsdoc.js import jsdoc from 'gulp-jsdoc3'; import gulp from 'gulp'; -gulp.task('build', function (cb) { +gulp.task('doc:build', function (cb) { const config = require('../jsdoc.json'); gulp.src(['README.md', './src/**/*.js'], {read: false}) .pipe(jsdoc(config, cb));
10
diff --git a/karma.conf.js b/karma.conf.js @@ -49,9 +49,6 @@ module.exports = function (config) { 'spec_files': [ '**/*.js' ], - 'helpers': [ - 'dist/mo.umd.js' - ], random: false, failFast: true }
2
diff --git a/src/client/js/components/Admin/SlackIntegration/SlackIntegration.jsx b/src/client/js/components/Admin/SlackIntegration/SlackIntegration.jsx @@ -106,14 +106,14 @@ const SlackIntegration = (props) => { const botTypes = { officialBot: { - id: 'official-bot', + botType: 'official-bot', name: t('admin:slack_int...
10