code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/package.json b/package.json "codemirror": "5.53.2", "dagre": "0.8.4", "deep-equal": "^2.0.1", - "draft-js": "0.11.5", - "draft-js-prism": "^1.0.6", "draftjs-utils": "0.10.2", "dva": "^2.4.1", "enquire-js": "^0.1.1",
1
diff --git a/src/core/Utils.js b/src/core/Utils.js @@ -124,7 +124,9 @@ function getFileType (file) { 'svg': 'image/svg+xml', 'jpg': 'image/jpeg', 'png': 'image/png', - 'gif': 'image/gif' + 'gif': 'image/gif', + 'yaml': 'text/yaml', + 'yml': 'text/yaml' } const fileExtension = file.name ? getFileNameAndExtension(file.na...
0
diff --git a/src/styles/styles.js b/src/styles/styles.js @@ -698,7 +698,7 @@ const styles = { borderRadius: variables.componentBorderRadiusNormal, }, - textInputScrollPadding: { + textInputLabelMultilineScrollPadding: { scrollPadding: '23px 0 0 0', },
10
diff --git a/test/frontend/profile.test.js b/test/frontend/profile.test.js @@ -2,22 +2,74 @@ require("mock-local-storage"); const assert = require("assert"); const MatrixProfile = require("../../frontend/profile").default; +function getProfileDataSample() { + return { + id: '111', + name: 'Nome do fulano', + imageUrl: ...
7
diff --git a/src/core/Core.js b/src/core/Core.js @@ -398,6 +398,7 @@ class Uppy { }) .catch((err) => { const message = typeof err === 'object' ? err.message : err + this.log(message) this.info(message, 'error', 5000) return Promise.reject(typeof err === 'object' ? err : new Error(err)) })
0
diff --git a/apps/dotmatrixclock/app.js b/apps/dotmatrixclock/app.js @@ -61,11 +61,20 @@ const font5x5 = { // Char renderer const COLORS = { + blue: { BG: "#0297fe", DARK: "#3b3ce8", LIGHT: "#E9ffff", + }, + orange: { + BG: "#f7b336", + DARK: "#ac721e", + LIGHT: "#f6fc0f", + } }; +let selectedColor = "blue"; + // Examp...
11
diff --git a/website/src/examples/dashboard/app.es6 b/website/src/examples/dashboard/app.es6 @@ -36,7 +36,8 @@ function uppyInit () { uppy.use(Dashboard, { trigger: '.UppyModalOpenerBtn', inline: opts.DashboardInline, - target: opts.DashboardInline ? '.DashboardContainer' : 'body' + target: opts.DashboardInline ? '.Das...
0
diff --git a/RobotArdu/src/test/java/de/fhg/iais/roberta/syntax/codegen/Ast2MakeBlockVisitorTest.java b/RobotArdu/src/test/java/de/fhg/iais/roberta/syntax/codegen/Ast2MakeBlockVisitorTest.java @@ -7,7 +7,8 @@ import de.fhg.iais.roberta.util.test.ardu.HelperMakeBlock; public class Ast2MakeBlockVisitorTest { HelperMakeBl...
1
diff --git a/js/models/searchSamples.js b/js/models/searchSamples.js @@ -173,7 +173,7 @@ function searchSamples(search, columns, columnOrder, data, cohortSamples) { return null; } let fieldMap = createFieldMap(columnOrder), - allSamples = _.range(cohortSamples.length); + allSamples = _.range(_.get(cohortSamples, 'lengt...
9
diff --git a/index.d.ts b/index.d.ts @@ -844,6 +844,7 @@ declare namespace Moleculer { cacher?: boolean | Cacher | string | GenericObject; serializer?: Serializer | string | GenericObject; validator?: boolean | BaseValidator | ValidatorNames | ValidatorOptions; + errorRegenerator?: Errors.Regenerator; metrics?: boolean...
3
diff --git a/src/components/general/equipment/Equipment.jsx b/src/components/general/equipment/Equipment.jsx @@ -56,7 +56,7 @@ const objects = { // -const Item = forwardRef(({ +const EquipmentItem = forwardRef(({ object, enabled, hovered, @@ -213,7 +213,7 @@ export const Equipment = () => { </div> <ul className={styles...
10
diff --git a/reddit-bot/comment-bot.js b/reddit-bot/comment-bot.js @@ -54,6 +54,12 @@ if (true) { console.log(comment); r.getComment(comment).fetch().then((comment_data) => { + if (!comment_data) { + console.log("Unable to fetch comment data for " + comment); + message_data.deleteFromInbox(); + return; + } + if (!comme...
8
diff --git a/src/js/createTippy.js b/src/js/createTippy.js @@ -258,7 +258,7 @@ export default function createTippy(reference, collectionProps) { /** * Cleans up old listeners */ - function cleanupOldMouseMoveListeners() { + function cleanupOldMouseListeners() { document.body.removeEventListener('mouseleave', prepareHid...
10
diff --git a/runtime.js b/runtime.js @@ -18,6 +18,7 @@ import {makeTextMesh} from './vr-ui.js'; import {renderer, scene2, appManager} from './app-object.js'; import wbn from './wbn.js'; import {portalMaterial} from './shaders.js'; +import fx from './fx.js'; import {baseUnit, rarityColors} from './constants.js'; const l...
0
diff --git a/scripts/bundle.config.js b/scripts/bundle.config.js @@ -73,7 +73,11 @@ const config = { presets: [['@babel/preset-env', {forceAllTransforms: true}]], // all of the helpers will reference the module @babel/runtime to avoid duplication // across the compiled output. - plugins: ['@babel/transform-runtime'] + ...
3
diff --git a/web/basic/header.html b/web/basic/header.html <a class="nav-link" href="/settings"> <i class="nav-icon icon-settings"></i> Settings</a> </li> - <li class="nav-item nav-dropdown"> + <!-- <li class="nav-item nav-dropdown"> <a class="nav-link nav-dropdown-toggle" href="#"> <i class="nav-icon icon-chemistry"><...
2
diff --git a/src/tryCatch.spec.js b/src/tryCatch.spec.js @@ -11,13 +11,13 @@ test('throws when fn is not function', () => { }) test('when fallback is used', () => { - const fn = prop('x') + const fn = x => x.x expect(tryCatch(fn, false)(null)).toBe(false) }) test('when fallback is function', () => { - const fn = prop('...
1
diff --git a/js/Map.js b/js/Map.js @@ -19,7 +19,7 @@ BR.Map = { }) .addTo(map); if (!map.restoreView()) { - map.setView([50.99, 9.86], 6); + map.setView([50.99, 9.86], 5); } // two attribution lines by adding two controls, prevents ugly wrapping on
12
diff --git a/lib/cmds/template_generator.js b/lib/cmds/template_generator.js @@ -30,7 +30,7 @@ class TemplateGenerator { console.log('-> '.green + 'embark blockchain'.bold.cyan + ' or '.green + 'embark simulator'.bold.cyan); console.log('open another console in the same directory and run'.green); console.log('-> '.gree...
3
diff --git a/test/jasmine/tests/parcoords_test.js b/test/jasmine/tests/parcoords_test.js @@ -40,6 +40,12 @@ function mouseTo(x, y) { mouseEvent('mouseover', x, y); } +function mouseClick(x, y) { + mouseTo(x, y); + mouseEvent('mousedown', x, y); + mouseEvent('mouseup', x, y); +} + function mostOfDrag(x1, y1, x2, y2) { m...
0
diff --git a/CHANGES.md b/CHANGES.md - `func (context.Context) (TOut, error)` - `func (context.Context, TIn) (TOut, error)` - - See the official [AWS Blog Post](https://aws.amazon.com/blogs/compute/announcing-go-support-for-aws-lambda/) for more information. + - See the lambda.Start [docs](https://godoc.org/github.com/...
0
diff --git a/Build/Chakra.Build.Clang.props b/Build/Chakra.Build.Clang.props -Wno-microsoft-extra-qualification -Wno-microsoft-default-arg-redefinition -Wno-microsoft-exception-spec - -v + -Wno-clang-cl-pch + -Wno-unused-lambda-capture + -Wno-pragma-pack </AdditionalOptions> <!-- Clang doesn't support code view informa...
8
diff --git a/articles/support/matrix.md b/articles/support/matrix.md @@ -52,7 +52,7 @@ Throughout this article, we will use the following terms to indicate the varying This section covers the browsers that Auth0 will support when using the Auth0 Dashboard or Lock Library, or executing authentication transactions. -### ...
2
diff --git a/packages/app/src/components/PageEditorByHackmd.tsx b/packages/app/src/components/PageEditorByHackmd.tsx @@ -188,13 +188,15 @@ export const PageEditorByHackmd = (): JSX.Element => { */ const onSaveWithShortcut = useCallback(async(markdown) => { try { + const currentPagePathOrPathname = currentPagePath || cu...
6
diff --git a/src/scripts/interactive-video.js b/src/scripts/interactive-video.js @@ -1038,6 +1038,15 @@ InteractiveVideo.prototype.attachControls = function ($wrapper) { }); } + /** + * Closes the More menu if it is expanded + */ + const closeMoreMenuIfExpanded = function(){ + if(self.controls.$more.attr('aria-expanded...
0
diff --git a/assets/js/modules/analytics/util/index.js b/assets/js/modules/analytics/util/index.js @@ -29,7 +29,6 @@ import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ -import { getModulesData } from '../../../util'; import calculateOverviewData from './calculateOverviewData'; export { calculateOvervi...
2
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml @@ -60,15 +60,6 @@ jobs: - uses: ./.github/workflows/utils/android.yml with: target_branch: ${{ github.event.inputs.release }} - - name: add .env secrets - env: - SENTRYRC: ${{ secrets.sentryrc_file }} - run: | - env_name="${{ env.ENV }}" - cat ...
13
diff --git a/test/cf/smoke/src/test/test.js b/test/cf/smoke/src/test/test.js @@ -170,9 +170,21 @@ const authHeader = (token) => : {}; describe('abacus-smoke-test', function() { - before(() => { - if (objectStorageToken) objectStorageToken.start(); - if (systemToken) systemToken.start(); + before((done) => { + if (objec...
7
diff --git a/gulp-tasks/wfHelper.js b/gulp-tasks/wfHelper.js @@ -13,7 +13,7 @@ var STD_EXCLUDES = ['!**/_generated.md', '!**/_template.md']; var RE_UPDATED = /{# wf_updated_on: (.*?) #}/; var RE_PUBLISHED = /{# wf_published_on: (.*?) #}/; var RE_DESCRIPTION = /^description: (.*)/m; -var RE_TITLE = /^# (.*) {: .page-tit...
8
diff --git a/rss/translator/article.js b/rss/translator/article.js @@ -96,7 +96,11 @@ module.exports = function Article (rawArticle, guildRss, rssName) { noLinkBrackets: true, format: { image: function (node, options) { - if (Array.isArray(imgSrcs) && imgSrcs.length < 5) imgSrcs.push(node.attribs.src) + if (Array.isArr...
1
diff --git a/token-metadata/0xeca82185adCE47f39c684352B0439f030f860318/metadata.json b/token-metadata/0xeca82185adCE47f39c684352B0439f030f860318/metadata.json "symbol": "PERL", "address": "0xeca82185adCE47f39c684352B0439f030f860318", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/packages/networks/src/networks/xdai.ts b/packages/networks/src/networks/xdai.ts @@ -7,7 +7,7 @@ export const xdai: NetworkConfig = { unlockAddress: '0x1bc53f4303c711cc693F6Ec3477B83703DcB317f', serializerAddress: '0x646E373EAf8a4AEc31Bf62B7Fd6fB59296d6CdA9', id: 100, - name: 'xDai', + name: 'Gnosis Chain',...
10
diff --git a/CHANGELOG.md b/CHANGELOG.md ## 7.0.2 (unreleased) -### Breaking - ### Feature -- Addons can optionally include a `razzle.extend.js` file in their root. This - module needs to follow the same rules as the `razzle.config.js`. They change - the default Volto Razzle configuration, before it is passed to the Vo...
6
diff --git a/lib/darwin_core/archive.rb b/lib/darwin_core/archive.rb @@ -88,7 +88,7 @@ module DarwinCore "Content-Type" => "application/json" } } - logger.debug "Posting #{options.body} to #{@opts[:post_taxon_archive_to_url]}" + logger.debug "Posting #{options[:body]} to #{@opts[:post_taxon_archive_to_url]}" response =...
1
diff --git a/src/app/Library/CrudPanel/Traits/Query.php b/src/app/Library/CrudPanel/Traits/Query.php @@ -242,13 +242,30 @@ trait Query // add the count query in the "outer" query. $outerQuery = $outerQuery->selectRaw('count(*) as total_rows'); + // Expression columns are hand-written by developers in ->selectRaw() and ...
4
diff --git a/e2e/cypress/integration/dashboard-tus.spec.ts b/e2e/cypress/integration/dashboard-tus.spec.ts @@ -16,7 +16,7 @@ describe('Dashboard with Tus', () => { cy.intercept('http://localhost:3020/search/unsplash/*').as('unsplash') }) - it.only('should emit `error` and `upload-error` events on failed POST request', ...
2
diff --git a/app/views/navbar.scala.html b/app/views/navbar.scala.html <!-- Script loads regardless of whether user is registered or not --> <script> +$(document).ready(function () { function logWebpageActivity(activity){ var currentRoute = window.location.pathname; var url = "/userapi/logWebpageActivity"; var async = ...
1
diff --git a/README.md b/README.md @@ -201,6 +201,7 @@ Existing plugins: * [superagent-charset](https://github.com/magicdawn/superagent-charset) - add charset support for node's SuperAgent * [superagent-verbose-errors](https://github.com/jcoreio/superagent-verbose-errors) - include response body in error messages for f...
0
diff --git a/package.json b/package.json "jquery": "^3.1.0", "lodash": "^4.14.1", "mime": "^1.3.4", - "moment": "^2.14.1", + "moment-timezone": "^0.5.11", "mousetrap": "^1.5.3", "npm": "^3.10.6", "objtree": "^0.1.1",
14
diff --git a/src/libs/Permissions.js b/src/libs/Permissions.js @@ -8,8 +8,7 @@ import CONST from '../CONST'; * @returns {Boolean} */ function canUseAllBetas(betas) { - // return isDevelopment() || _.contains(betas, CONST.BETAS.ALL); - return _.contains(betas, CONST.BETAS.ALL); + return isDevelopment() || _.contains(bet...
13
diff --git a/src/external/babel/plugin-babel2.js b/src/external/babel/plugin-babel2.js @@ -8,17 +8,21 @@ var stage3 = require('systemjs-babel-build').pluginsStage3; var stage2 = require('systemjs-babel-build').pluginsStage2; var stage1 = require('systemjs-babel-build').pluginsStage1; - +// Caching the transformation re...
4
diff --git a/plugins/identity/app/views/identity/projects/_wizard_steps.html.haml b/plugins/identity/app/views/identity/projects/_wizard_steps.html.haml - else %p Please provide a cost object against which we can bill the services consumed by this project +- else + = wizard_step({title: 'Cost Center', + mandatory: true...
7
diff --git a/src/components/Editor/Editor.js b/src/components/Editor/Editor.js @@ -340,7 +340,6 @@ class Editor extends React.Component { )} </Form.Item> <Form.Item - label={<span className="Editor__label">Write your story</span>} validateStatus={this.state.noContent ? 'error' : ''} help={this.state.noContent ? "Story ...
2
diff --git a/README.md b/README.md @@ -223,7 +223,7 @@ Using React Hot Loader with React Native can cause unexpected issues (see #824) Most of modern React component-loader libraries are not "100%" compatible with React-Hot-Loader, as long they load deferred component on `componentWillMount`, but never reload it again....
1
diff --git a/docs/v2_to_v3_guide.md b/docs/v2_to_v3_guide.md @@ -114,6 +114,10 @@ Allows the following placement options for the select toolbar: Boolean option that allows checkboxes for selectable rows to be hidden. +### tableBodyHeight and tableBodyMaxHeight + +Options that allows developers to control the height of ...
0
diff --git a/src/pages/workspace/invoices/WorkspaceInvoicesVBAView.js b/src/pages/workspace/invoices/WorkspaceInvoicesVBAView.js @@ -28,7 +28,7 @@ const WorkspaceInvoicesVBAView = props => ( { title: props.translate('workspace.invoices.viewUnpaidInvoices'), onPress: () => Link.openOldDotLink(`reports?policyID=${props.p...
14
diff --git a/src/userscript.ts b/src/userscript.ts @@ -63239,7 +63239,14 @@ var $$IMU_EXPORT$$; domain.match(/^images[0-9]*\./)) { // https://images3.static-bluray.com/products/22/76649_1_medium.jpg -- 136x204 // https://images3.static-bluray.com/products/22/76649_1_original.jpg -- 471x709 - return src.replace(/(\/[0-9...
7
diff --git a/src/matrix/room/timeline/Timeline.js b/src/matrix/room/timeline/Timeline.js @@ -224,11 +224,14 @@ export class Timeline { /** @package */ replaceEntries(entries) { this._addLocalRelationsToNewRemoteEntries(entries); - this._updateEntriesNotInTimeline(entries); - this._loadContextEntriesWhereNeeded(entries)...
14
diff --git a/src/traces/bar/cross_trace_calc.js b/src/traces/bar/cross_trace_calc.js @@ -63,7 +63,7 @@ function setGroupPositions(gd, pa, sa, calcTraces) { var included; var i, calcTrace, fullTrace; - initBase(gd, pa, sa, calcTraces); + initBase(sa, calcTraces); if(overlay) { setGroupPositionsInOverlayMode(gd, pa, sa, ...
2
diff --git a/chunk-worker.js b/chunk-worker.js importScripts('./bin/objectize2.js'); -/* const { - PARCEL_SIZE, - SUBPARCEL_SIZE, - SUBPARCEL_SIZE_P1, - NUM_PARCELS, -} = globalThis.constants; */ const potentialDefault = -0.5; +const maxNumObjects = 10; + +class Allocator { + constructor() { + this.offsets = []; + } + ...
0
diff --git a/src/middleware/boilerplates/coographie/moleculer.config.js b/src/middleware/boilerplates/coographie/moleculer.config.js @@ -3,16 +3,16 @@ const CONFIG = require('./config'); module.exports = { // You can set all ServiceBroker configurations here // See https://moleculer.services/docs/0.14/configuration.htm...
12
diff --git a/src/server.js b/src/server.js const cookieParser = require("cookie-parser"); +const cookieSession = require("cookie-session"); const express = require("express"); -const session = require("express-session"); const nextApp = require("next"); const request = require("request"); const { useStaticRendering } =...
1
diff --git a/articles/rules/current/index.md b/articles/rules/current/index.md @@ -28,6 +28,10 @@ Among many possibilities, Rules can be used to: * Enable __multifactor__ authentication, based on context (e.g. last login, IP address of the user, location, etc.). * Modify tokens: Change the returned __scopes__ of the `a...
0
diff --git a/README.mkd b/README.mkd @@ -35,7 +35,7 @@ Ranvier prides itself on having thorough documentation which is available on our We have a Slack channel you can use to ask questions, suggest features, or just keep up to date with the project: [https://ranviermud.slack.com](https://ranviermud.slack.com) -[Get an ...
1
diff --git a/vendor/ember-shortcuts.js b/vendor/ember-shortcuts.js function triggerShortcut(def, event) { var i, action, handler, infos; - if (!(infos = router.currentHandlerInfos)) return; + if (!(infos = router.currentRouteInfos)) return; for (i = infos.length - 1; i >= 0; i--) { - handler = infos[i].handler; + handl...
1
diff --git a/src/views/conference/2019/index/index.scss b/src/views/conference/2019/index/index.scss @@ -29,12 +29,17 @@ h1.title-banner-h1.mod-2019 { opacity: .4; } +.conf2019-panel { + margin: auto 2rem; +} + .conf2019-panel, .title-banner-h3.mod-2019 { } .title-banner-h3.mod-2019 { text-align: left; + font-size: 1.1...
7
diff --git a/components/tabs/__docs__/storybook-stories.jsx b/components/tabs/__docs__/storybook-stories.jsx @@ -588,9 +588,11 @@ const DemoTabsInterceptSelect = createReactClass({ <Panel label="Panel with intercept"> <p>Default Panel</p> {this.state.intercepts > 0 && ( - <p>{`We've intercepted navigation ${ + <p> + {`...
5
diff --git a/docs/examples/specs/allof.json b/docs/examples/specs/allof.json "description": "Employee Details (Nested)", "allOf": [ { "$ref": "#/definitions/Type1"}, - { "$ref": "#/definitions/Type2"} + { "$ref": "#/definitions/Type2"}, + { "$ref": "#/definitions/primitiveType"} ] } } "department": { "type": "string", ...
7
diff --git a/ui/app/components/send_/send.utils.js b/ui/app/components/send_/send.utils.js @@ -221,26 +221,21 @@ function generateTokenTransferData (selectedAddress, selectedToken) { ).join('') } -function hexComparator (a, b) { - return conversionGreaterThan( - { value: a, fromNumericBase: 'hex' }, - { value: b, fromN...
7
diff --git a/src/gml/type/GmlTypeParser.hx b/src/gml/type/GmlTypeParser.hx @@ -109,6 +109,7 @@ class GmlTypeParser { if (typeWarn != null && !GmlAPI.stdKind.exists(name) && !GmlTypeTools.kindMap.exists(name) + && name != "undefined" ) typeWarn.push(name); result = TInst(name, params, kind); }
1
diff --git a/packages/analytics-plugin-custify/src/browser.js b/packages/analytics-plugin-custify/src/browser.js @@ -31,35 +31,31 @@ function custifyPlugin(pluginConfig = {}) { } // Create script & append to DOM - let script = document.createElement('script') - script.id = 'cs-script-loader' - script.type = 'text/javas...
3
diff --git a/views/components/settings/parts/display-config.es b/views/components/settings/parts/display-config.es @@ -165,22 +165,34 @@ const ZoomingConfig = connect(() => ( static propTypes = { zoomLevel: React.PropTypes.number, } + state = { + zoomLevel: config.get('poi.zoomLevel', 1), + } handleChangeZoomLevel = (e...
12
diff --git a/packages/idyll-template-projects/templates/multipage/index.idyll b/packages/idyll-template-projects/templates/multipage/index.idyll @@ -48,49 +48,6 @@ Make sure all of your posts have been built, then deploy the docs folder via any You can install custom dependencies on a per-post basis by running `npm ins...
3
diff --git a/src/reducers/flowLimitation/index.js b/src/reducers/flowLimitation/index.js @@ -14,6 +14,14 @@ const initialState = { } const flowLimitationReducer = handleActions({ + [setFlowLimitation]: (state, { payload }) => ({ + ...state, + ...payload + }), + [clearFlowLimitation]: (state) => ({ + ...state, + ...init...
9
diff --git a/src/memcached_permissions.erl b/src/memcached_permissions.erl @@ -174,7 +174,7 @@ jsonify_user({UserName, Type}, [{global, GlobalPermissions} | BucketPermissions] {list_to_binary(UserName), {[Buckets, Global, {type, Type}]}}. memcached_admin_json(AU, Buckets) -> - jsonify_user({AU, builtin}, [{global, [all...
4
diff --git a/src/services/csv/eventTransform.js b/src/services/csv/eventTransform.js @@ -453,7 +453,7 @@ module.exports = app => { let resolvedActionTakerAddress; let actionOnBehalfOf; let actionRecipientAddress; - let inserttraceId; + let insertTraceId; const capitalizeOwnerType = capitalizeAdminType(ownerType); @@ -5...
10
diff --git a/public/javascripts/Progress/src/Progress.js b/public/javascripts/Progress/src/Progress.js @@ -7,8 +7,8 @@ function Progress (_, $, c3, L, role, difficultRegionIds) { var completedInitializingAuditedTasks = false; var neighborhoodPolygonStyle = { - color: '#888', - weight: 1, + color: 'red', + weight: 3, op...
3
diff --git a/src/components/modals/SettingsModal.jsx b/src/components/modals/SettingsModal.jsx @@ -21,25 +21,39 @@ class SettingsModal extends React.Component { } changeTransitionProperty(property, value) { - const changedStyle = { - ...this.props.mapStyle, - transition: { + const transition = { ...this.props.mapStyle....
11
diff --git a/token-metadata/0x5abFd418AdB35e89c68313574eB16BdfFc15e607/metadata.json b/token-metadata/0x5abFd418AdB35e89c68313574eB16BdfFc15e607/metadata.json "symbol": "TMV", "address": "0x5abFd418AdB35e89c68313574eB16BdfFc15e607", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/README.md b/README.md [![Build Status](https://travis-ci.org/gregnb/mui-datatables.svg?branch=master)](https://travis-ci.org/gregnb/mui-datatables) [![NPM Downloads](https://img.shields.io/npm/dt/mui-datatables.svg?style=flat)](https://npmcharts.com/compare/mui-datatables?minimal=true) [![Coverage Status](...
2
diff --git a/reference/api/keys.md b/reference/api/keys.md @@ -91,7 +91,7 @@ Since the `key` field depends on the master key, it is computed at runtime and t | `keys.update` | Provides access to the [update key](#update-a-key) endpoint | | `keys.delete` | Provides access to the [delete key](#delete-a-key) endpoint | -*...
14
diff --git a/edit.js b/edit.js @@ -745,6 +745,7 @@ const _makeChunkMesh = async () => { } // mesh.frustumCulled = false; mesh.meshId = meshId; + mesh.isChunkMesh = true; return mesh; }; @@ -1818,9 +1819,9 @@ function animate(timestamp, frame) { } case 'sledgehammer': { if (removeMesh.visible) { - if (raycastChunkSpec.m...
0
diff --git a/accessibility-checker-extension/src/ts/options/OptionsApp.tsx b/accessibility-checker-extension/src/ts/options/OptionsApp.tsx @@ -116,7 +116,7 @@ class OptionsApp extends React.Component<{}, OptionsAppState> { selected_archive: item.selectedItem, rulesets, selected_ruleset, - show_notif: false, + show_noti...
3
diff --git a/test/unit/specs/utils/injectDoesIdentityCookieExist.spec.js b/test/unit/specs/utils/injectDoesIdentityCookieExist.spec.js @@ -17,6 +17,7 @@ import { import removeAllCookies from "../../helpers/removeAllCookies"; describe("Identity::injectDoesIdentityCookieExist", () => { + beforeEach(removeAllCookies); aft...
1
diff --git a/lib/shim/webframework-shim.js b/lib/shim/webframework-shim.js @@ -453,10 +453,9 @@ function wrapMiddlewareMounter(nodule, properties, spec) { routeIdx = null route = null } else if (shim.isArray(route)) { - route = route.slice() - for (let i = 0; i < route.length; ++i) { - route[i] = shim._routeParser.call...
4
diff --git a/js/modules/pipelineTool.js b/js/modules/pipelineTool.js @@ -262,54 +262,6 @@ let makePipeline = function(filename, location) { }; -/* -let makeNetwork = function(obj) { - let pipeline = [], lastPipelineNode; - let currentOutputName = 'z'; - - //create the node in the pipeline corresponding to the current m...
2
diff --git a/apps/lcars/lcars.settings.js b/apps/lcars/lcars.settings.js '< Back': back, 'Row 1': { value: 0 | data_options.indexOf(settings.dataRow1), - min: 0, max: 4, + min: 0, max: 5, format: v => data_options[v], onchange: v => { settings.dataRow1 = data_options[v]; }, 'Row 2': { value: 0 | data_options.indexOf(se...
1
diff --git a/generators/entity-client/templates/vue/src/main/webapp/app/entities/entity-update.component.ts.ejs b/generators/entity-client/templates/vue/src/main/webapp/app/entities/entity-update.component.ts.ejs @@ -16,6 +16,7 @@ import moment from 'moment' <%_ } } _%> <%_ + const importEntitiesSeen = [entityAngularNa...
9
diff --git a/src/encoded/tests/data/inserts/user.json b/src/encoded/tests/data/inserts/user.json ], "uuid": "7e95dcd6-9c35-4082-9c53-09d14c5752be" }, + { + "email": "toyunhai@gmail.com", + "first_name": "Yunhai", + "groups": [ + "admin" + ], + "job_title": "Data Wrangler", + "lab": "/labs/j-michael-cherry/", + "last_na...
0
diff --git a/package.json b/package.json }, "homepage": "https://github.com/11ty/11ty-website#readme", "devDependencies": { - "@11ty/eleventy": "^0.11.0", + "@11ty/eleventy": "^0.11.1", "@11ty/eleventy-cache-assets": "^2.0.2", "@11ty/eleventy-img": "^0.2.5", "@11ty/eleventy-navigation": "0.1.5",
3
diff --git a/imports/config/accounts.js b/imports/config/accounts.js @@ -75,7 +75,7 @@ if (Meteor.isServer) { attempt.allowed = false; throw new Meteor.Error(403, 'User account is inactive!'); } - else if (Meteor.settings.email.sendVerificationEmail && !attempt.user.emails[0].verified) { + else if (GlobalSettings.sendV...
14
diff --git a/README.md b/README.md @@ -140,8 +140,8 @@ Element `hello-kitty` get icon () // from element { return this.getAttribute `icon` } - get planet () // "automagic" token binding - { return `world ${ this.icon }` } + get greeting () // "automagic" token binding + { return `Kitty Carousel ${ this.icon }` } onclic...
3
diff --git a/tabulator.js b/tabulator.js self.setFilter(colFilter); } + //check if column group contains any columns + function isColGroupEmpty(column){ + var empty = true; + + if(column.columns){ + if(column.columns.length){ + column.columns.forEach(function(col){ + if(!isColGroupEmpty(col)){ + empty = false; + } + })...
9
diff --git a/lib/collector/remote-method.js b/lib/collector/remote-method.js @@ -99,7 +99,7 @@ RemoteMethod.prototype.invoke = function invoke(payload, nrHeaders, callback) { } if (this._metrics) { const payloadByteLength = byteLength(serialized) - const responseByteLength = res.payload ? byteLength(res.payload) : 0 + ...
9
diff --git a/package.json b/package.json "homepage": "https://github.com/tulios/kafkajs", "scripts": { "test:local": "export KAFKA_VERSION=${KAFKA_VERSION:='0.11'} && NODE_ENV=test echo \"KAFKA_VERSION: ${KAFKA_VERSION}\" && DEBUG_LOG_BUFFERS=1 ./node_modules/.bin/jest --forceExit --detectOpenHandles", - "test:debug": ...
1
diff --git a/src/platforms/web/runtime/components/transition.js b/src/platforms/web/runtime/components/transition.js // supports transition mode (out-in / in-out) import { warn } from 'core/util/index' -import { camelize, extend } from 'shared/util' +import { camelize, extend, isPrimitive } from 'shared/util' import { ...
9
diff --git a/test/acceptance/wrap.js b/test/acceptance/wrap.js @@ -92,7 +92,7 @@ describe('wrap x coordinate', function() { var testClient = new TestClient(plainTorqueMapConfig(testScenario.plainColor)); testClient.getTile(tileRequest.z, tileRequest.x, tileRequest.y, function(err, tile) { assert.imageEqualsFile(tile, b...
12
diff --git a/README.md b/README.md @@ -55,6 +55,7 @@ Samples are designed to illustrate scenarios you'll need to implement to build g |56.teams-file-upload | Demonstrates how to obtain file consent, and upload files to Teams from a bot. Also, how to receive a file sent to a bot.|[View][cs#56]|[View][js#56] | | | |[View...
0
diff --git a/angular/projects/spark-angular/src/lib/components/sprk-masthead/sprk-masthead.component.ts b/angular/projects/spark-angular/src/lib/components/sprk-masthead/sprk-masthead.component.ts @@ -9,7 +9,7 @@ import { ViewChild, } from '@angular/core'; import { Router, Event, NavigationEnd } from '@angular/router';...
13
diff --git a/packages/cx/src/data/View.d.ts b/packages/cx/src/data/View.d.ts @@ -16,13 +16,11 @@ export interface ViewMethods<D = Record> { init<V>(path: AccessorChain<V>, value: V): boolean; set(path: Path, value: any): boolean; - set(path: Record, value: Record): boolean; set<V>(path: AccessorChain<V>, value: V): boo...
2
diff --git a/netlify.toml b/netlify.toml HUGO_ENV = "production" [context.deploy-preview] - command = "hugo -t repo -b $DEPLOY_PRIME_URL" + command = "hugo -t repo" [context.deploy-preview.environment] HUGO_VERSION = "0.40.3" [context.branch-deploy] - command = "hugo -t repo -b $DEPLOY_PRIME_URL" + command = "hugo -t r...
2
diff --git a/src/apps.json b/src/apps.json "24" ], "icon": "Froala.svg", + "html": "class=\".*(fr-view|fr-box)", "implies": [ - "jQuery" + "jQuery", "Font Awesome" ], "website": "http://froala.com/wysiwyg-editor" },
7
diff --git a/assets/js/modules/analytics/components/dashboard/DashboardAllTrafficWidget/LegacyDashboardAllTraffic.js b/assets/js/modules/analytics/components/dashboard/DashboardAllTrafficWidget/LegacyDashboardAllTraffic.js @@ -33,7 +33,7 @@ import { Cell } from '../../../../../material-components'; function LegacyDashb...
2
diff --git a/index.js b/index.js const path = require('path'); const http = require('http'); +const https = require('https'); const url = require('url'); const fs = require('fs'); const util = require('util'); const express = require('express'); const vite = require('vite'); const wsrtc = require('wsrtc/wsrtc-server.js...
0
diff --git a/contracts/EtherNomin.sol b/contracts/EtherNomin.sol @@ -109,7 +109,7 @@ contract EtherNomin is ExternStateProxyFeeToken { uint public etherPrice; // Last time the price was updated. - uint public lastPriceUpdate; + uint public lastPriceUpdateTime; // The period it takes for the price to be considered stale...
10
diff --git a/src/commands/index.js b/src/commands/index.js @@ -2,6 +2,29 @@ import 'babel-register' import chalk from 'chalk' import fs from 'fs' +const ignoredExtensions = [ + 'css', + 'scss', + 'styl', + 'png', + 'gif', + 'jpg', + 'jpeg', + 'svg', + 'woff', + 'ttf', + 'eot', + 'otf', + 'mp4', + 'webm', + 'ogg', + 'mp...
8
diff --git a/README.md b/README.md @@ -56,6 +56,7 @@ yarn seed ``` 4. Run starter kit in development mode. +For running Android or iOS you need to set in .spinrc.js builders.ios.enabled and/or builders.android.enabled field true. See *Getting Started with React Native* section. ``` yarn watch
7
diff --git a/docs/src/pages/discover-more/showcase/showcase.md b/docs/src/pages/discover-more/showcase/showcase.md @@ -151,3 +151,10 @@ Want to add your app? Found an app that no longer works or no longer uses Materi A pioneering Muslim Fashion e-commerce. homepage: https://www.hijup.com/ + +### 26. Snippets Chrome Ext...
0
diff --git a/articles/libraries/lock/v10/customization.md b/articles/libraries/lock/v10/customization.md @@ -834,6 +834,10 @@ Using OIDC Conformant mode in Lock necessitates a cross-origin authentication fl For more information, please see the [OIDC adoption guide](/api-auth/tutorials/adoption) and the [cross-origin au...
0
diff --git a/metaverse_modules/sonic-boom/index.js b/metaverse_modules/sonic-boom/index.js @@ -22,21 +22,16 @@ export default () => { const electronicballTexture = textureLoader.load(`${baseUrl}/textures/electronic-ball2.png`); const noiseMap = textureLoader.load(`${baseUrl}/textures/noise.jpg`); - let currentPos=new T...
1